Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ce22c04840 | |||
| 786857c812 | |||
| 3677602434 | |||
| 9813e6d7b7 | |||
| 370cdec046 | |||
| c5caa37d58 | |||
| 8834f78495 | |||
| 75c983005f | |||
| 39a8f9107a | |||
| 5701872bfe | |||
| 8b438cd3ff | |||
| c8f4b5cae0 | |||
| 0aa6b9c3ea | |||
| 0fb22f300c | |||
| f647d05856 | |||
| ecfb6ffb6d | |||
| ce6feca02e | |||
| 328b0fdc40 | |||
| 4584be5d2b | |||
| 10c18b0b49 | |||
| 94a5ce475e | |||
| d9124eb9dc | |||
| e6342169e0 | |||
| 0675a3a27a | |||
| 854a12f081 |
@@ -25,30 +25,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "Collections", id: "/collections" },
|
||||||
id: "/",
|
{ name: "Gallery", id: "/gallery" },
|
||||||
},
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
{
|
{ name: "About", id: "/about" },
|
||||||
name: "Collections",
|
{ name: "Contact", id: "/contact" },
|
||||||
id: "/collections",
|
{ name: "Help", id: "/help" }
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "/gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Custom Orders",
|
|
||||||
id: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EverBloom Bridal"
|
brandName="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
@@ -71,69 +54,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Meet The Artist"
|
title="Meet The Artist"
|
||||||
description="The creative soul behind EverBloom."
|
description="The creative soul behind EverBloom."
|
||||||
members={[
|
members={[{ id: "t1", name: "Ananya P.", role: "Lead Florist", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-with-flowers_23-2149591591.jpg" }]}
|
||||||
{
|
|
||||||
id: "t1",
|
|
||||||
name: "Ananya P.",
|
|
||||||
role: "Lead Florist",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-with-flowers_23-2149591591.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Collections",
|
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Gallery",
|
|
||||||
href: "/gallery",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Custom Orders",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Instagram",
|
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="EverBloom Bridal"
|
logoText="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -25,30 +25,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "Collections", id: "/collections" },
|
||||||
id: "/",
|
{ name: "Gallery", id: "/gallery" },
|
||||||
},
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
{
|
{ name: "About", id: "/about" },
|
||||||
name: "Collections",
|
{ name: "Contact", id: "/contact" },
|
||||||
id: "/collections",
|
{ name: "Help", id: "/help" }
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "/gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Custom Orders",
|
|
||||||
id: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EverBloom Bridal"
|
brandName="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
@@ -60,62 +43,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[{ id: "p1", brand: "EverBloom", name: "Ivory Rose Bouquet", price: "₹4,500 - ₹6,000", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/flower-arrangement-fresh-flowers-pumpkin_169016-5450.jpg" }, { id: "p2", brand: "EverBloom", name: "Boutonniere Set", price: "₹1,200", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/bouquet-white-flowers-bucket-white-table_114579-66052.jpg" }, { id: "p3", brand: "EverBloom", name: "Flower Girl Basket", price: "₹2,500", rating: 5, reviewCount: "10", imageSrc: "http://img.b2bpic.net/free-photo/flowers-bouquet-dining-table_1339-1210.jpg" }, { id: "p4", brand: "EverBloom", name: "Floral Tiara", price: "₹3,000", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-wedding-bouquet-ground_1153-628.jpg" }, { id: "p5", brand: "EverBloom", name: "Ring Cushion", price: "₹1,800", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/green-yellow-bouquet-with-golden-christmas-ball_114579-2440.jpg" }, { id: "p6", brand: "EverBloom", name: "Bridesmaid Florals", price: "₹2,000", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/woman-making-floral-arrangement_23-2148846536.jpg" }]}
|
||||||
{
|
|
||||||
id: "p1",
|
|
||||||
brand: "EverBloom",
|
|
||||||
name: "Ivory Rose Bouquet",
|
|
||||||
price: "₹4,500 - ₹6,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "24",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flower-arrangement-fresh-flowers-pumpkin_169016-5450.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
brand: "EverBloom",
|
|
||||||
name: "Boutonniere Set",
|
|
||||||
price: "₹1,200",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "15",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bouquet-white-flowers-bucket-white-table_114579-66052.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
brand: "EverBloom",
|
|
||||||
name: "Flower Girl Basket",
|
|
||||||
price: "₹2,500",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "10",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flowers-bouquet-dining-table_1339-1210.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p4",
|
|
||||||
brand: "EverBloom",
|
|
||||||
name: "Floral Tiara",
|
|
||||||
price: "₹3,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "18",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-wedding-bouquet-ground_1153-628.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p5",
|
|
||||||
brand: "EverBloom",
|
|
||||||
name: "Ring Cushion",
|
|
||||||
price: "₹1,800",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "8",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/green-yellow-bouquet-with-golden-christmas-ball_114579-2440.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p6",
|
|
||||||
brand: "EverBloom",
|
|
||||||
name: "Bridesmaid Florals",
|
|
||||||
price: "₹2,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "12",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-making-floral-arrangement_23-2148846536.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Our Collections"
|
title="Our Collections"
|
||||||
description="Explore our handcrafted floral accessories for your perfect celebration."
|
description="Explore our handcrafted floral accessories for your perfect celebration."
|
||||||
/>
|
/>
|
||||||
@@ -129,56 +57,11 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Collections",
|
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Gallery",
|
|
||||||
href: "/gallery",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Custom Orders",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Instagram",
|
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="EverBloom Bridal"
|
logoText="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -25,30 +25,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "Collections", id: "/collections" },
|
||||||
id: "/",
|
{ name: "Gallery", id: "/gallery" },
|
||||||
},
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
{
|
{ name: "About", id: "/about" },
|
||||||
name: "Collections",
|
{ name: "Contact", id: "/contact" },
|
||||||
id: "/collections",
|
{ name: "Help", id: "/help" }
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "/gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Custom Orders",
|
|
||||||
id: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EverBloom Bridal"
|
brandName="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
@@ -57,16 +40,9 @@ export default function LandingPage() {
|
|||||||
<div id="contact-section" data-section="contact-section">
|
<div id="contact-section" data-section="contact-section">
|
||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "gradient-bars" }}
|
||||||
variant: "gradient-bars",
|
|
||||||
}}
|
|
||||||
text="Currently serving weddings in Bangalore. Contact us via WhatsApp to start your dream floral journey."
|
text="Currently serving weddings in Bangalore. Contact us via WhatsApp to start your dream floral journey."
|
||||||
buttons={[
|
buttons={[{ text: "Message on WhatsApp", href: "https://wa.me/919999999999" }]}
|
||||||
{
|
|
||||||
text: "Message on WhatsApp",
|
|
||||||
href: "https://wa.me/919999999999",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -75,74 +51,18 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Get In Touch"
|
title="Get In Touch"
|
||||||
description="We are ready to design your day."
|
description="We are ready to design your day."
|
||||||
inputs={[
|
inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Email" }]}
|
||||||
{
|
|
||||||
name: "name",
|
|
||||||
type: "text",
|
|
||||||
placeholder: "Your Name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "email",
|
|
||||||
type: "email",
|
|
||||||
placeholder: "Email",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/decorative-flowers-buttonhole_1304-4063.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/decorative-flowers-buttonhole_1304-4063.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Collections",
|
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Gallery",
|
|
||||||
href: "/gallery",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Custom Orders",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Instagram",
|
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="EverBloom Bridal"
|
logoText="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -25,30 +25,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "Collections", id: "/collections" },
|
||||||
id: "/",
|
{ name: "Gallery", id: "/gallery" },
|
||||||
},
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
{
|
{ name: "About", id: "/about" },
|
||||||
name: "Collections",
|
{ name: "Contact", id: "/contact" },
|
||||||
id: "/collections",
|
{ name: "Help", id: "/help" }
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "/gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Custom Orders",
|
|
||||||
id: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EverBloom Bridal"
|
brandName="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
@@ -59,18 +42,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Order Custom Florals"
|
title="Order Custom Florals"
|
||||||
description="Tell us your vision."
|
description="Tell us your vision."
|
||||||
inputs={[
|
inputs={[{ name: "name", type: "text", placeholder: "Name" }, { name: "date", type: "date", placeholder: "Wedding Date" }]}
|
||||||
{
|
|
||||||
name: "name",
|
|
||||||
type: "text",
|
|
||||||
placeholder: "Name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "date",
|
|
||||||
type: "date",
|
|
||||||
placeholder: "Wedding Date",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/male-florist-makes-bouquet-roses_169016-24133.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/male-florist-makes-bouquet-roses_169016-24133.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -82,73 +54,18 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Our Custom Process"
|
title="Our Custom Process"
|
||||||
description="From sketch to final bloom."
|
description="From sketch to final bloom."
|
||||||
negativeCard={{
|
negativeCard={{ items: ["Initial Consultation", "Color Matching"] }}
|
||||||
items: [
|
positiveCard={{ items: ["Design Proofs", "Final Creation"] }}
|
||||||
"Initial Consultation",
|
|
||||||
"Color Matching",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
positiveCard={{
|
|
||||||
items: [
|
|
||||||
"Design Proofs",
|
|
||||||
"Final Creation",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Collections",
|
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Gallery",
|
|
||||||
href: "/gallery",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Custom Orders",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Instagram",
|
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="EverBloom Bridal"
|
logoText="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -25,30 +25,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "Collections", id: "/collections" },
|
||||||
id: "/",
|
{ name: "Gallery", id: "/gallery" },
|
||||||
},
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
{
|
{ name: "About", id: "/about" },
|
||||||
name: "Collections",
|
{ name: "Contact", id: "/contact" },
|
||||||
id: "/collections",
|
{ name: "Help", id: "/help" }
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "/gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Custom Orders",
|
|
||||||
id: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EverBloom Bridal"
|
brandName="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
@@ -59,46 +42,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", title: "Bridal Bouquet", quote: "Stunning ivory roses.", name: "Anjali V.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/white-surface-with-several-flowers-romantic-heart_23-2147601282.jpg" },
|
||||||
id: "1",
|
{ id: "2", title: "Flower Crown", quote: "Beautifully handcrafted.", name: "Sonia R.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/wedding-day-details-bridal-bouquet-shoes-accessories_23-2151976648.jpg" },
|
||||||
title: "Bridal Bouquet",
|
{ id: "3", title: "Ring Cushion", quote: "Exquisite details.", name: "Meera K.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248847.jpg" },
|
||||||
quote: "Stunning ivory roses.",
|
{ id: "4", title: "Boutonniere", quote: "Perfect accent.", name: "Kiran S.", role: "Groom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g22xro" },
|
||||||
name: "Anjali V.",
|
{ id: "5", title: "Coordinated Set", quote: "Loved the matching set.", name: "Neha P.", role: "Bride", imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248845.jpg" }
|
||||||
role: "Bride",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/white-surface-with-several-flowers-romantic-heart_23-2147601282.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Flower Crown",
|
|
||||||
quote: "Beautifully handcrafted.",
|
|
||||||
name: "Sonia R.",
|
|
||||||
role: "Bride",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-day-details-bridal-bouquet-shoes-accessories_23-2151976648.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "Ring Cushion",
|
|
||||||
quote: "Exquisite details.",
|
|
||||||
name: "Meera K.",
|
|
||||||
role: "Bride",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248847.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
title: "Boutonniere",
|
|
||||||
quote: "Perfect accent.",
|
|
||||||
name: "Kiran S.",
|
|
||||||
role: "Groom",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=g22xro",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
title: "Coordinated Set",
|
|
||||||
quote: "Loved the matching set.",
|
|
||||||
name: "Neha P.",
|
|
||||||
role: "Bride",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-ruler-crown_23-2150248845.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Wedding Gallery"
|
title="Wedding Gallery"
|
||||||
description="Moments of beauty captured with our forever floral collection."
|
description="Moments of beauty captured with our forever floral collection."
|
||||||
@@ -112,70 +60,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Impact"
|
title="Impact"
|
||||||
description="Numbers that speak for our quality."
|
description="Numbers that speak for our quality."
|
||||||
metrics={[
|
metrics={[{ id: "m1", value: "500+", title: "Happy Brides", description: "Satisfied customers in Bangalore.", imageSrc: "http://img.b2bpic.net/free-photo/wrapped-gift-boxes-with-baby-s-breath-flowers-tag-with-candles-scissor-wedding-rings_23-2147936485.jpg" }]}
|
||||||
{
|
|
||||||
id: "m1",
|
|
||||||
value: "500+",
|
|
||||||
title: "Happy Brides",
|
|
||||||
description: "Satisfied customers in Bangalore.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/wrapped-gift-boxes-with-baby-s-breath-flowers-tag-with-candles-scissor-wedding-rings_23-2147936485.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Collections",
|
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Gallery",
|
|
||||||
href: "/gallery",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Custom Orders",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Instagram",
|
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="EverBloom Bridal"
|
logoText="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
71
src/app/help/page.tsx
Normal file
71
src/app/help/page.tsx
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import LegalSection from '@/components/legal/LegalSection';
|
||||||
|
|
||||||
|
export default function HelpPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="largeSizeMediumTitles"
|
||||||
|
background="fluid"
|
||||||
|
cardStyle="solid"
|
||||||
|
primaryButtonStyle="diagonal-gradient"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleCentered
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Collections", id: "/collections" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
{ name: "Help", id: "/help" }
|
||||||
|
]}
|
||||||
|
brandName="EverBloom Bridal"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="help-content" data-section="help-content">
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="Help & Support"
|
||||||
|
subtitle="Guides to help you manage your orders and galleries."
|
||||||
|
sections={[
|
||||||
|
{
|
||||||
|
heading: "Uploading Images", content: [{ type: "paragraph", text: "To upload your custom order images, navigate to your dashboard, select the 'Upload' icon, and ensure your files are in .jpg or .png format under 5MB."}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "Updating Prices", content: [{ type: "paragraph", text: "For custom items, you can update your price quotes in the 'My Requests' section by editing the base quote provided by our florists."}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: "Managing Gallery Content", content: [{ type: "paragraph", text: "You can manage your gallery by logging into your profile. Use the drag-and-drop interface to reorder your photos or delete images you no longer want displayed."}]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[
|
||||||
|
{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] },
|
||||||
|
{ items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||||
|
{ items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Privacy Policy", href: "#" }] },
|
||||||
|
]}
|
||||||
|
logoText="EverBloom Bridal"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
224
src/app/page.tsx
224
src/app/page.tsx
@@ -28,30 +28,13 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "Collections", id: "/collections" },
|
||||||
id: "/",
|
{ name: "Gallery", id: "/gallery" },
|
||||||
},
|
{ name: "Custom Orders", id: "/custom" },
|
||||||
{
|
{ name: "About", id: "/about" },
|
||||||
name: "Collections",
|
{ name: "Contact", id: "/contact" },
|
||||||
id: "/collections",
|
{ name: "Help", id: "/help" }
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Gallery",
|
|
||||||
id: "/gallery",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Custom Orders",
|
|
||||||
id: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About",
|
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EverBloom Bridal"
|
brandName="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
@@ -63,75 +46,26 @@ export default function LandingPage() {
|
|||||||
description="Handcrafted wedding florals and accessories designed for timeless celebrations in Bangalore."
|
description="Handcrafted wedding florals and accessories designed for timeless celebrations in Bangalore."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Priya Sharma",
|
name: "Priya Sharma", handle: "@priya_bridal", testimonial: "The flowers were absolutely breathtaking. Perfectly handcrafted.", rating: 5,
|
||||||
handle: "@priya_bridal",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-pretty-girl-with-brunette-tied-hair-dark-brown-eyes-naturally-make-up-sincere-smiling-looking-camera-while-posing-outdoor_8353-12415.jpg"},
|
||||||
testimonial: "The flowers were absolutely breathtaking. Perfectly handcrafted.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-pretty-girl-with-brunette-tied-hair-dark-brown-eyes-naturally-make-up-sincere-smiling-looking-camera-while-posing-outdoor_8353-12415.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Ananya Reddy",
|
name: "Ananya Reddy", handle: "@ananya_wed", testimonial: "Forever blooms that look so real. My wedding was dreamy.", rating: 5,
|
||||||
handle: "@ananya_wed",
|
imageSrc: "http://img.b2bpic.net/free-photo/sensual-young-lady-dress-with-flower-wreath-head_23-2148054885.jpg"},
|
||||||
testimonial: "Forever blooms that look so real. My wedding was dreamy.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/sensual-young-lady-dress-with-flower-wreath-head_23-2148054885.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Neha V.",
|
name: "Neha V.", handle: "@neha_v", testimonial: "I love that these flowers never fade. A true keepsake.", rating: 5,
|
||||||
handle: "@neha_v",
|
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-white-dress-posing_1328-4131.jpg"},
|
||||||
testimonial: "I love that these flowers never fade. A true keepsake.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-white-dress-posing_1328-4131.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Deepa K.",
|
name: "Deepa K.", handle: "@deepa_wed", testimonial: "The attention to detail in my bouquet was unmatched.", rating: 5,
|
||||||
handle: "@deepa_wed",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-brunette-caucasian-bride-with-natural-happy-smile-her-face_181624-23050.jpg"},
|
||||||
testimonial: "The attention to detail in my bouquet was unmatched.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-brunette-caucasian-bride-with-natural-happy-smile-her-face_181624-23050.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Kavya M.",
|
name: "Kavya M.", handle: "@kavya_m", testimonial: "Beyond beautiful. Thank you for making my day special.", rating: 5,
|
||||||
handle: "@kavya_m",
|
imageSrc: "http://img.b2bpic.net/free-photo/bride-beach-sunset_23-2151976658.jpg"},
|
||||||
testimonial: "Beyond beautiful. Thank you for making my day special.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bride-beach-sunset_23-2151976658.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Explore Collections", href: "/collections" },
|
||||||
text: "Explore Collections",
|
{ text: "Customize Your Wedding Florals", href: "/custom" },
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Customize Your Wedding Florals",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/bouquet-holly-berries-peonies-dry-lemon-slices_114579-2539.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/bouquet-holly-berries-peonies-dry-lemon-slices_114579-2539.jpg"
|
||||||
avatars={[
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/beautiful-fresh-flowers-flora-shop-work-space-business_53876-23097.jpg",
|
|
||||||
alt: "Artist portrait 1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/front-view-woman-working-with-flowers_23-2149591591.jpg",
|
|
||||||
alt: "Artist portrait 2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-woman-smelling-flower_23-2149247554.jpg",
|
|
||||||
alt: "Artist portrait 3",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg",
|
|
||||||
alt: "Artist portrait 4",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/woman-with-flower-wreath-her-head-posing-field_181624-40565.jpg",
|
|
||||||
alt: "Artist portrait 5",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
avatarText="Trusted by 500+ happy brides"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -142,20 +76,8 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Why Choose Forever Florals?"
|
title="Why Choose Forever Florals?"
|
||||||
description="The perfect balance of luxury and practicality for your big day."
|
description="The perfect balance of luxury and practicality for your big day."
|
||||||
negativeCard={{
|
negativeCard={{ items: ["Fresh flowers wilt in heat", "High maintenance", "Expensive waste"] }}
|
||||||
items: [
|
positiveCard={{ items: ["Stays perfect forever", "Easy to store as a memory", "Cost-effective luxury"] }}
|
||||||
"Fresh flowers wilt in heat",
|
|
||||||
"High maintenance",
|
|
||||||
"Expensive waste",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
positiveCard={{
|
|
||||||
items: [
|
|
||||||
"Stays perfect forever",
|
|
||||||
"Easy to store as a memory",
|
|
||||||
"Cost-effective luxury",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -166,16 +88,8 @@ export default function LandingPage() {
|
|||||||
sideDescription="Everything you need to know about our handcrafted floral arrangements."
|
sideDescription="Everything you need to know about our handcrafted floral arrangements."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "f1", title: "How long do they last?", content: "Our florals are designed to be heirloom pieces that last for years." },
|
||||||
id: "f1",
|
{ id: "f2", title: "Can I request custom colors?", content: "Absolutely, we specialize in custom color matching to suit your bridal theme." },
|
||||||
title: "How long do they last?",
|
|
||||||
content: "Our florals are designed to be heirloom pieces that last for years.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f2",
|
|
||||||
title: "Can I request custom colors?",
|
|
||||||
content: "Absolutely, we specialize in custom color matching to suit your bridal theme.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -188,41 +102,8 @@ export default function LandingPage() {
|
|||||||
title="Simple Pricing"
|
title="Simple Pricing"
|
||||||
description="Packages for every wedding scale."
|
description="Packages for every wedding scale."
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{ id: "p1", badge: "Essential", price: "₹15,000", subtitle: "Perfect for intimate weddings", buttons: [{ text: "Inquire", href: "/contact" }], features: ["Bouquet", "Boutonniere", "Ring Cushion"] },
|
||||||
id: "p1",
|
{ id: "p2", badge: "Premium", price: "₹45,000", subtitle: "For the grand celebration", buttons: [{ text: "Inquire", href: "/contact" }], features: ["Full Bridal Set", "Bridesmaid Sets", "Decor Pieces", "Custom Tiaras"] },
|
||||||
badge: "Essential",
|
|
||||||
price: "₹15,000",
|
|
||||||
subtitle: "Perfect for intimate weddings",
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: "Inquire",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"Bouquet",
|
|
||||||
"Boutonniere",
|
|
||||||
"Ring Cushion",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
badge: "Premium",
|
|
||||||
price: "₹45,000",
|
|
||||||
subtitle: "For the grand celebration",
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: "Inquire",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"Full Bridal Set",
|
|
||||||
"Bridesmaid Sets",
|
|
||||||
"Decor Pieces",
|
|
||||||
"Custom Tiaras",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -233,63 +114,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Featured In"
|
title="Featured In"
|
||||||
description="Trusted by leading wedding publications."
|
description="Trusted by leading wedding publications."
|
||||||
names={[
|
names={["WeddingWire", "The Knot", "Brides", "Vogue Wedding", "Bangalore Times"]}
|
||||||
"WeddingWire",
|
|
||||||
"The Knot",
|
|
||||||
"Brides",
|
|
||||||
"Vogue Wedding",
|
|
||||||
"Bangalore Times",
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] },
|
||||||
items: [
|
{ items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||||
{
|
{ items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Privacy Policy", href: "#" }] },
|
||||||
label: "Home",
|
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Collections",
|
|
||||||
href: "/collections",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Gallery",
|
|
||||||
href: "/gallery",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Custom Orders",
|
|
||||||
href: "/custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Instagram",
|
|
||||||
href: "https://instagram.com",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="EverBloom Bridal"
|
logoText="EverBloom Bridal"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user