diff --git a/src/app/page.tsx b/src/app/page.tsx index 2c611cc..b13b2c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,7 +22,8 @@ export default function HomePage() { const footerColumns = [ { - title: "Shop", items: [ + title: "Shop", + items: [ { label: "All Collections", href: "/shop" }, { label: "Sarees", href: "/shop" }, { label: "Kurtas", href: "/shop" }, @@ -30,7 +31,8 @@ export default function HomePage() { ], }, { - title: "Company", items: [ + title: "Company", + items: [ { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }, @@ -38,7 +40,8 @@ export default function HomePage() { ], }, { - title: "Connect", items: [ + title: "Connect", + items: [ { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, { label: "WhatsApp", href: "https://wa.me/919876543210" }, @@ -96,16 +99,40 @@ export default function HomePage() { tagAnimation="slide-up" products={[ { - id: "saree-1", name: "Silk Saree with Gold Borders", price: "₹8,500", variant: "Multiple Colors Available", imageSrc: "http://img.b2bpic.net/free-vector/golden-pattern-background_1268-1137.jpg?_wi=1", imageAlt: "Silk saree with gold embroidery", isFavorited: false, + id: "saree-1", + name: "Silk Saree with Gold Borders", + price: "₹8,500", + variant: "Multiple Colors Available", + imageSrc: "http://img.b2bpic.net/free-vector/golden-pattern-background_1268-1137.jpg?_wi=1", + imageAlt: "Silk saree with gold embroidery", + isFavorited: false, }, { - id: "kurta-1", name: "Designer Kurta with Embroidery", price: "₹3,200", variant: "S • M • L • XL", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-dancer-looking-away_23-2148235431.jpg?_wi=1", imageAlt: "Designer embroidered kurta", isFavorited: false, + id: "kurta-1", + name: "Designer Kurta with Embroidery", + price: "₹3,200", + variant: "S • M • L • XL", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-dancer-looking-away_23-2148235431.jpg?_wi=1", + imageAlt: "Designer embroidered kurta", + isFavorited: false, }, { - id: "lehenga-1", name: "Festive Lehenga Set", price: "₹12,000", variant: "Maroon • Gold Accents", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-wearing-sari_23-2149503034.jpg?_wi=1", imageAlt: "Festive lehenga with gold embellishments", isFavorited: false, + id: "lehenga-1", + name: "Festive Lehenga Set", + price: "₹12,000", + variant: "Maroon • Gold Accents", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-wearing-sari_23-2149503034.jpg?_wi=1", + imageAlt: "Festive lehenga with gold embellishments", + isFavorited: false, }, { - id: "saree-2", name: "Cotton Saree with Traditional Prints", price: "₹4,500", variant: "Cream • Maroon • Navy", imageSrc: "http://img.b2bpic.net/free-vector/red-orange-fabric-texture_23-2147558599.jpg?_wi=1", imageAlt: "Traditional printed cotton saree", isFavorited: false, + id: "saree-2", + name: "Cotton Saree with Traditional Prints", + price: "₹4,500", + variant: "Cream • Maroon • Navy", + imageSrc: "http://img.b2bpic.net/free-vector/red-orange-fabric-texture_23-2147558599.jpg?_wi=1", + imageAlt: "Traditional printed cotton saree", + isFavorited: false, }, ]} textboxLayout="default" @@ -123,13 +150,29 @@ export default function HomePage() { useInvertedBackground={false} testimonials={[ { - id: "1", name: "Priya Sharma", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiley-woman-looking-camera_23-2148286030.jpg?_wi=1", imageAlt: "Priya Sharma"}, + id: "1", + name: "Priya Sharma", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiley-woman-looking-camera_23-2148286030.jpg?_wi=1", + imageAlt: "Priya Sharma", + }, { - id: "2", name: "Anjali Verma", imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beautiful-smiling-brunette-model-dressed-summer-hipster-clothes-trendy-girl-posing-street-background-funny-positive-woman-having-fun_158538-16144.jpg?_wi=1", imageAlt: "Anjali Verma"}, + id: "2", + name: "Anjali Verma", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beautiful-smiling-brunette-model-dressed-summer-hipster-clothes-trendy-girl-posing-street-background-funny-positive-woman-having-fun_158538-16144.jpg?_wi=1", + imageAlt: "Anjali Verma", + }, { - id: "3", name: "Divya Patel", imageSrc: "http://img.b2bpic.net/free-photo/little-girl-standing-with-crossed-arms-sticking-out-tongue-t-shirt_176474-53440.jpg?_wi=1", imageAlt: "Divya Patel"}, + id: "3", + name: "Divya Patel", + imageSrc: "http://img.b2bpic.net/free-photo/little-girl-standing-with-crossed-arms-sticking-out-tongue-t-shirt_176474-53440.jpg?_wi=1", + imageAlt: "Divya Patel", + }, { - id: "4", name: "Neha Gupta", imageSrc: "http://img.b2bpic.net/free-photo/closeup-pretty-young-woman-with-long-hair-standing-against-isolated-background_662251-535.jpg?_wi=1", imageAlt: "Neha Gupta"}, + id: "4", + name: "Neha Gupta", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-pretty-young-woman-with-long-hair-standing-against-isolated-background_662251-535.jpg?_wi=1", + imageAlt: "Neha Gupta", + }, ]} /> @@ -138,7 +181,9 @@ export default function HomePage() { ); -} +} \ No newline at end of file