Update src/app/page.tsx
This commit is contained in:
165
src/app/page.tsx
165
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Our Heritage",
|
||||
id: "about",
|
||||
},
|
||||
name: "Our Heritage", id: "about"},
|
||||
{
|
||||
name: "Collections",
|
||||
id: "products",
|
||||
},
|
||||
name: "Collections", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Aura Sarees"
|
||||
/>
|
||||
@@ -53,64 +45,41 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Timeless Elegance in Every Drape"
|
||||
description="Experience the luxury of handwoven fabrics and traditional craftsmanship. Explore our curated collection of exquisite sarees designed for the modern woman."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-young-woman-with-ginger-hair-clean-healthy-skin_273609-8996.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-young-woman-with-ginger-hair-clean-healthy-skin_273609-8996.jpg", alt: "Client 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/indian-woman-putting-lipstick_53876-14536.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/indian-woman-putting-lipstick_53876-14536.jpg", alt: "Client 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565171.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565171.jpg", alt: "Client 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-standing-hugging-herself_1150-16158.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-standing-hugging-herself_1150-16158.jpg", alt: "Client 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-young-caucasian-fashion-model-with-dark-hair-black-sparkly-dress-looks-camera-indoors-concept-female-beauty_197531-31418.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-young-caucasian-fashion-model-with-dark-hair-black-sparkly-dress-looks-camera-indoors-concept-female-beauty_197531-31418.jpg", alt: "Client 5"},
|
||||
]}
|
||||
avatarText="Join 5,000+ happy clients"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Collection",
|
||||
href: "#products",
|
||||
},
|
||||
text: "View Collection", href: "#products"},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Premium Silk",
|
||||
icon: Diamond,
|
||||
type: "text-icon", text: "Premium Silk", icon: Diamond,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Handwoven Design",
|
||||
icon: Sparkles,
|
||||
type: "text-icon", text: "Handwoven Design", icon: Sparkles,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Custom Tailoring",
|
||||
icon: Scissors,
|
||||
type: "text-icon", text: "Custom Tailoring", icon: Scissors,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Global Shipping",
|
||||
icon: Truck,
|
||||
type: "text-icon", text: "Global Shipping", icon: Truck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Eco-friendly",
|
||||
icon: Leaf,
|
||||
type: "text-icon", text: "Eco-friendly", icon: Leaf,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -121,24 +90,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Crafted with ",
|
||||
},
|
||||
type: "text", content: "Crafted with "},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/talented-artist-cleaning-paintbrush-piece-denim-fabric_482257-100532.jpg",
|
||||
alt: "Craftsmanship",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/talented-artist-cleaning-paintbrush-piece-denim-fabric_482257-100532.jpg", alt: "Craftsmanship"},
|
||||
{
|
||||
type: "text",
|
||||
content: " tradition",
|
||||
},
|
||||
type: "text", content: " tradition"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Story",
|
||||
href: "#",
|
||||
},
|
||||
text: "Our Story", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -151,47 +111,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Royal Silk",
|
||||
price: "$120",
|
||||
variant: "Silk",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400868.jpg",
|
||||
},
|
||||
id: "p1", name: "Royal Silk", price: "$120", variant: "Silk", imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400868.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Modern Chiffon",
|
||||
price: "$85",
|
||||
variant: "Chiffon",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/details-part-traditional-indian-wedding-women-clothes_8353-9765.jpg",
|
||||
},
|
||||
id: "p2", name: "Modern Chiffon", price: "$85", variant: "Chiffon", imageSrc: "http://img.b2bpic.net/free-photo/details-part-traditional-indian-wedding-women-clothes_8353-9765.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Heritage Gold",
|
||||
price: "$150",
|
||||
variant: "Banarasi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-decorative-black-frame_23-2147951268.jpg",
|
||||
},
|
||||
id: "p3", name: "Heritage Gold", price: "$150", variant: "Banarasi", imageSrc: "http://img.b2bpic.net/free-photo/close-up-decorative-black-frame_23-2147951268.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Floral Grace",
|
||||
price: "$95",
|
||||
variant: "Georgette",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-traditional-sari-garment_23-2149565142.jpg",
|
||||
},
|
||||
id: "p4", name: "Floral Grace", price: "$95", variant: "Georgette", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-traditional-sari-garment_23-2149565142.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Classic Minimal",
|
||||
price: "$110",
|
||||
variant: "Silk",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-tradition-sari-garment_52683-90226.jpg",
|
||||
},
|
||||
id: "p5", name: "Classic Minimal", price: "$110", variant: "Silk", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-tradition-sari-garment_52683-90226.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Festive Bloom",
|
||||
price: "$135",
|
||||
variant: "Embroidery",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400871.jpg",
|
||||
},
|
||||
id: "p6", name: "Festive Bloom", price: "$135", variant: "Embroidery", imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400871.jpg"},
|
||||
]}
|
||||
title="Curated Collections"
|
||||
description="Hand-picked sarees combining heritage art with modern aesthetics."
|
||||
@@ -200,44 +130,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Aria K.",
|
||||
role: "Collector",
|
||||
testimonial: "The fabric quality is unmatched. Truly beautiful.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-young-woman-with-ginger-hair-clean-healthy-skin_273609-8996.jpg",
|
||||
},
|
||||
id: "t1", name: "Aria K.", role: "Collector", testimonial: "The fabric quality is unmatched. Truly beautiful.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-young-woman-with-ginger-hair-clean-healthy-skin_273609-8996.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Meera S.",
|
||||
role: "Designer",
|
||||
testimonial: "Sophisticated drapes for every occasion.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-woman-putting-lipstick_53876-14536.jpg",
|
||||
},
|
||||
id: "t2", name: "Meera S.", role: "Designer", testimonial: "Sophisticated drapes for every occasion.", imageSrc: "http://img.b2bpic.net/free-photo/indian-woman-putting-lipstick_53876-14536.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Priya V.",
|
||||
role: "Artist",
|
||||
testimonial: "Elegant and perfect for festivities.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565171.jpg",
|
||||
},
|
||||
id: "t3", name: "Priya V.", role: "Artist", testimonial: "Elegant and perfect for festivities.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-posing-while-wearing-traditional-sari-garment_23-2149565171.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Elena R.",
|
||||
role: "Architect",
|
||||
testimonial: "Simply exquisite craftsmanship.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-standing-hugging-herself_1150-16158.jpg",
|
||||
},
|
||||
id: "t4", name: "Elena R.", role: "Architect", testimonial: "Simply exquisite craftsmanship.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-thai-woman-wearing-thai-dress-standing-hugging-herself_1150-16158.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Sunita L.",
|
||||
role: "Teacher",
|
||||
testimonial: "Comfortable and absolutely stunning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-caucasian-fashion-model-with-dark-hair-black-sparkly-dress-looks-camera-indoors-concept-female-beauty_197531-31418.jpg",
|
||||
},
|
||||
id: "t5", name: "Sunita L.", role: "Teacher", testimonial: "Comfortable and absolutely stunning.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-caucasian-fashion-model-with-dark-hair-black-sparkly-dress-looks-camera-indoors-concept-female-beauty_197531-31418.jpg"},
|
||||
]}
|
||||
title="Loved by Our Patrons"
|
||||
description="Stories from our community about the beauty and comfort of our sarees."
|
||||
@@ -248,16 +154,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Get in touch"
|
||||
title="Questions about our sarees?"
|
||||
description="We are here to help you select the perfect piece for your special day."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@aurasarees.com",
|
||||
},
|
||||
text: "Contact Us", href: "mailto:hello@aurasarees.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user