diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..ce5baf8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,8 +13,8 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Furniture Studio | Crafting Timeless Furniture", + description: "Discover handcrafted, sustainable furniture that transforms spaces. Where artisanal craftsmanship meets modern design.", }; export default function RootLayout({ diff --git a/src/app/page.tsx b/src/app/page.tsx index 07a01d9..cbb5136 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,227 @@ +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardDescription, CardTitle } from "@/components/ui/card"; +import Image from "next/image"; + export default function Home() { - return (
); + return ( +
+ {/* Hero Section */} +
+
+ Modern furniture in a minimalist living room +
+
+
+

Crafting Timeless Furniture

+

+ Where artisanal craftsmanship meets modern design. Discover furniture that transforms spaces. +

+
+ + +
+
+
+ + {/* Featured Collections */} +
+
+

Our Collections

+

+ Each piece is a testament to our unwavering commitment to quality, sustainability, and timeless design. +

+
+ +
+ {[ + { + title: "Scandinavian Collection", + description: "Minimalist designs with clean lines and natural materials", + image: "/scandinavian-collection.jpg" + }, + { + title: "Mid-Century Modern", + description: "Iconic pieces inspired by the golden era of furniture design", + image: "/mid-century-collection.jpg" + }, + { + title: "Contemporary Luxury", + description: "Bold statement pieces for the modern connoisseur", + image: "/contemporary-collection.jpg" + }, + ].map((collection, i) => ( + +
+ {collection.title} +
+ + {collection.title} + {collection.description} + + +
+ ))} +
+
+ + {/* About Section */} +
+
+
+ Our furniture craftsmen at work +
+
+

Craftsmanship in Every Detail

+

+ For over two decades, our studio has been dedicated to the art of furniture making. + Every piece is handcrafted by our skilled artisans using traditional techniques + passed down through generations, combined with modern innovation. +

+

+ We believe that furniture should be more than functional—it should tell a story, + evoke emotion, and stand the test of time. That's why we source only the finest + sustainable materials and pay meticulous attention to every detail. +

+ +
+
+
+ + {/* Testimonials */} +
+

What Our Clients Say

+ +
+ {[ + { + quote: "The attention to detail and quality of craftsmanship exceeded our expectations. Our custom dining table has become the centerpiece of our home.", + author: "Sarah & Michael", + location: "New York" + }, + { + quote: "Working with this studio was a pleasure from start to finish. They truly understood our vision and created pieces that perfectly complement our space.", + author: "James Wilson", + location: "Los Angeles" + }, + { + quote: "The sustainable practices and ethical sourcing of materials was what initially drew us to the studio, but the exceptional quality of their work is why we keep coming back.", + author: "Emma Thompson", + location: "Chicago" + }, + ].map((testimonial, i) => ( + + + + +

{testimonial.quote}

+
+

{testimonial.author}

+

{testimonial.location}

+
+
+ ))} +
+
+ + {/* Contact CTA */} +
+
+

Ready to Transform Your Space?

+

+ Whether you're looking for a statement piece or an entire collection, our team is ready to bring your vision to life. +

+
+ + +
+
+
+ + {/* Footer */} + +
+ ); }