Switch to version 1: modified src/app/page.tsx
This commit is contained in:
131
src/app/page.tsx
131
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",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -138,7 +181,9 @@ export default function HomePage() {
|
||||
<TextSplitAbout
|
||||
title="Our Story"
|
||||
description={[
|
||||
"Saun Concepts is a premier ethnic wear boutique located in Whitefield, Bengaluru, dedicated to celebrating the timeless beauty of traditional Indian fashion. With over a decade of expertise, we handpick and curate the finest sarees, kurtas, lehengas, and festive wear from master artisans across India.", "Our mission is to make authentic, high-quality ethnic wear accessible while maintaining our commitment to premium craftsmanship. Every piece in our collection tells a story of cultural heritage, traditional techniques, and modern elegance. We believe in empowering women to express their identity through fashion that honors tradition and celebrates individuality."]}
|
||||
"Saun Concepts is a premier ethnic wear boutique located in Whitefield, Bengaluru, dedicated to celebrating the timeless beauty of traditional Indian fashion. With over a decade of expertise, we handpick and curate the finest sarees, kurtas, lehengas, and festive wear from master artisans across India.",
|
||||
"Our mission is to make authentic, high-quality ethnic wear accessible while maintaining our commitment to premium craftsmanship. Every piece in our collection tells a story of cultural heritage, traditional techniques, and modern elegance. We believe in empowering women to express their identity through fashion that honors tradition and celebrates individuality.",
|
||||
]}
|
||||
buttons={[{ text: "Visit Our Store", href: "/contact" }]}
|
||||
useInvertedBackground={false}
|
||||
showBorder={true}
|
||||
@@ -153,13 +198,31 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "bestseller-1", name: "Classic Silk Saree", price: "₹6,500", variant: "Traditional Weave", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-tradition-sari-garment_52683-90223.jpg?_wi=1", imageAlt: "Classic silk saree", isFavorited: false,
|
||||
id: "bestseller-1",
|
||||
name: "Classic Silk Saree",
|
||||
price: "₹6,500",
|
||||
variant: "Traditional Weave",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-tradition-sari-garment_52683-90223.jpg?_wi=1",
|
||||
imageAlt: "Classic silk saree",
|
||||
isFavorited: false,
|
||||
},
|
||||
{
|
||||
id: "bestseller-2", name: "Palazzo Kurta Suit", price: "₹4,800", variant: "Comfort Fit", imageSrc: "http://img.b2bpic.net/free-photo/man-floral-dress-sitting-chair-with-different-flowers-floor_23-2148121845.jpg?_wi=1", imageAlt: "Palazzo style kurta", isFavorited: false,
|
||||
id: "bestseller-2",
|
||||
name: "Palazzo Kurta Suit",
|
||||
price: "₹4,800",
|
||||
variant: "Comfort Fit",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-floral-dress-sitting-chair-with-different-flowers-floor_23-2148121845.jpg?_wi=1",
|
||||
imageAlt: "Palazzo style kurta",
|
||||
isFavorited: false,
|
||||
},
|
||||
{
|
||||
id: "bestseller-3", name: "Bridal Lehenga", price: "₹15,000", variant: "Premium Embroidery", imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400877.jpg?_wi=1", imageAlt: "Bridal lehenga with intricate embroidery", isFavorited: false,
|
||||
id: "bestseller-3",
|
||||
name: "Bridal Lehenga",
|
||||
price: "₹15,000",
|
||||
variant: "Premium Embroidery",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400877.jpg?_wi=1",
|
||||
imageAlt: "Bridal lehenga with intricate embroidery",
|
||||
isFavorited: false,
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -177,14 +240,38 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
blogs={[
|
||||
{
|
||||
id: "lookbook-1", category: ["Sarees", "Photography"],
|
||||
title: "Timeless Silk Sarees Collection", excerpt: "Discover our exquisite collection of hand-woven silk sarees featuring traditional patterns and contemporary elegance.", imageSrc: "http://img.b2bpic.net/free-photo/carpets-market-morocco_23-2148129784.jpg?_wi=1", imageAlt: "Saree collection display", authorName: "Saun Concepts", authorAvatar: "http://img.b2bpic.net/free-vector/flat-fashion-accessories-logo-set_23-2148922521.jpg", date: "Curated Collection"},
|
||||
id: "lookbook-1",
|
||||
category: ["Sarees", "Photography"],
|
||||
title: "Timeless Silk Sarees Collection",
|
||||
excerpt: "Discover our exquisite collection of hand-woven silk sarees featuring traditional patterns and contemporary elegance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpets-market-morocco_23-2148129784.jpg?_wi=1",
|
||||
imageAlt: "Saree collection display",
|
||||
authorName: "Saun Concepts",
|
||||
authorAvatar: "http://img.b2bpic.net/free-vector/flat-fashion-accessories-logo-set_23-2148922521.jpg",
|
||||
date: "Curated Collection",
|
||||
},
|
||||
{
|
||||
id: "lookbook-2", category: ["Kurtas", "Fashion"],
|
||||
title: "Modern Kurtas with Traditional Art", excerpt: "Contemporary silhouettes combined with traditional embroidery techniques showcase timeless style.", imageSrc: "http://img.b2bpic.net/free-photo/two-indian-stylish-mans-friends-traditional-clothes-posed-outdoor-talk-laugh_627829-12656.jpg?_wi=1", imageAlt: "Kurta collection", authorName: "Saun Concepts", authorAvatar: "http://img.b2bpic.net/free-vector/flat-fashion-accessories-logo-set_23-2148922521.jpg", date: "New Arrivals"},
|
||||
id: "lookbook-2",
|
||||
category: ["Kurtas", "Fashion"],
|
||||
title: "Modern Kurtas with Traditional Art",
|
||||
excerpt: "Contemporary silhouettes combined with traditional embroidery techniques showcase timeless style.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-indian-stylish-mans-friends-traditional-clothes-posed-outdoor-talk-laugh_627829-12656.jpg?_wi=1",
|
||||
imageAlt: "Kurta collection",
|
||||
authorName: "Saun Concepts",
|
||||
authorAvatar: "http://img.b2bpic.net/free-vector/flat-fashion-accessories-logo-set_23-2148922521.jpg",
|
||||
date: "New Arrivals",
|
||||
},
|
||||
{
|
||||
id: "lookbook-3", category: ["Lehengas", "Festive"],
|
||||
title: "Festive Lehengas for Every Celebration", excerpt: "Stunning lehenga sets perfect for weddings, celebrations, and special occasions with intricate embellishments.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-tradition-sari-garment_52683-90230.jpg?_wi=1", imageAlt: "Lehenga collection", authorName: "Saun Concepts", authorAvatar: "http://img.b2bpic.net/free-vector/flat-fashion-accessories-logo-set_23-2148922521.jpg", date: "Collection Highlight"},
|
||||
id: "lookbook-3",
|
||||
category: ["Lehengas", "Festive"],
|
||||
title: "Festive Lehengas for Every Celebration",
|
||||
excerpt: "Stunning lehenga sets perfect for weddings, celebrations, and special occasions with intricate embellishments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-tradition-sari-garment_52683-90230.jpg?_wi=1",
|
||||
imageAlt: "Lehenga collection",
|
||||
authorName: "Saun Concepts",
|
||||
authorAvatar: "http://img.b2bpic.net/free-vector/flat-fashion-accessories-logo-set_23-2148922521.jpg",
|
||||
date: "Collection Highlight",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -219,4 +306,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user