1 Commits

Author SHA1 Message Date
aaad91aa18 Update src/app/page.tsx 2026-04-25 06:41:47 +00:00

View File

@@ -31,25 +31,15 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "hero"},
id: "hero",
},
{ {
name: "About", name: "About", id: "about"},
id: "about",
},
{ {
name: "Menu", name: "Menu", id: "menu"},
id: "menu",
},
{ {
name: "Reviews", name: "Reviews", id: "reviews"},
id: "reviews",
},
{ {
name: "Contact", name: "Contact", id: "contact"},
id: "contact",
},
]} ]}
brandName="Cilantro 601" brandName="Cilantro 601"
/> />
@@ -58,19 +48,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
background={{ background={{
variant: "radial-gradient", variant: "radial-gradient"}}
}}
logoText="Cilantro 601" logoText="Cilantro 601"
description="Moncton's destination for authentic Andhra Pradesh flavors. Experience heritage recipes, bold spices, and true culinary hospitality." description="Moncton's destination for authentic Andhra Pradesh flavors. Experience heritage recipes, bold spices, and true culinary hospitality."
buttons={[ buttons={[
{ {
text: "View Menu", text: "View Menu", href: "#menu"},
href: "#menu",
},
{ {
text: "Book Table", text: "Book Table", href: "#contact"},
href: "#contact",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-vector/elegant-golden-mandala-background_23-2147887917.jpg" imageSrc="http://img.b2bpic.net/free-vector/elegant-golden-mandala-background_23-2147887917.jpg"
mediaAnimation="slide-up" mediaAnimation="slide-up"
@@ -84,17 +69,11 @@ export default function LandingPage() {
description="At Cilantro 601, we bring the fiery heart of Andhra Pradesh to Moncton. Every dish is prepared with traditional techniques to ensure you taste the authenticity in every bite." description="At Cilantro 601, we bring the fiery heart of Andhra Pradesh to Moncton. Every dish is prepared with traditional techniques to ensure you taste the authenticity in every bite."
metrics={[ metrics={[
{ {
value: "100%", value: "100%", title: "Authentic Recipes"},
title: "Authentic Recipes",
},
{ {
value: "20+", value: "20+", title: "Unique Spices"},
title: "Unique Spices",
},
{ {
value: "500+", value: "500+", title: "Satisfied Guests"},
title: "Satisfied Guests",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/side-view-caesar-salad-with-tomato-lettuce-human-hand-table_176474-3026.jpg" imageSrc="http://img.b2bpic.net/free-photo/side-view-caesar-salad-with-tomato-lettuce-human-hand-table_176474-3026.jpg"
mediaAnimation="slide-up" mediaAnimation="slide-up"
@@ -110,50 +89,23 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "p1", id: "p1", name: "Classic Masala Dosa", price: "$12.99", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086049.jpg"},
name: "Classic Masala Dosa",
price: "$12.99",
variant: "Starter",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086049.jpg",
},
{ {
id: "p2", id: "p2", name: "Royal Biryani", price: "$18.99", variant: "Rice", imageSrc: "http://img.b2bpic.net/free-photo/fresh-rice-dish-spices_23-2147894763.jpg"},
name: "Royal Biryani",
price: "$18.99",
variant: "Rice",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-rice-dish-spices_23-2147894763.jpg",
},
{ {
id: "p3", id: "p3", name: "Vegetable Curry", price: "$15.99", variant: "Entree", imageSrc: "http://img.b2bpic.net/free-photo/side-view-walnut-salad-with-pomegranate-bell-pepper-mayo-greens-meat-lettuce-plate_141793-5160.jpg"},
name: "Vegetable Curry",
price: "$15.99",
variant: "Entree",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-walnut-salad-with-pomegranate-bell-pepper-mayo-greens-meat-lettuce-plate_141793-5160.jpg",
},
{ {
id: "p4", id: "p4", name: "Idli & Sambar", price: "$10.99", variant: "Breakfast", imageSrc: "http://img.b2bpic.net/free-photo/idli-vada-with-sambar-chutney_23-2152002825.jpg"},
name: "Idli & Sambar",
price: "$10.99",
variant: "Breakfast",
imageSrc: "http://img.b2bpic.net/free-photo/idli-vada-with-sambar-chutney_23-2152002825.jpg",
},
{ {
id: "p5", id: "p5", name: "Crispy Vada", price: "$8.99", variant: "Snack", imageSrc: "http://img.b2bpic.net/free-photo/potato-balls-with-vegetables-sauce-wooden-board_140725-1203.jpg"},
name: "Crispy Vada",
price: "$8.99",
variant: "Snack",
imageSrc: "http://img.b2bpic.net/free-photo/potato-balls-with-vegetables-sauce-wooden-board_140725-1203.jpg",
},
{ {
id: "p6", id: "p6", name: "Ghee Roast Dosa", price: "$14.99", variant: "Dosa", imageSrc: "http://img.b2bpic.net/free-photo/toast-with-pineapple-jam-tea-breakfast-rustic_501050-469.jpg"},
name: "Ghee Roast Dosa",
price: "$14.99",
variant: "Dosa",
imageSrc: "http://img.b2bpic.net/free-photo/toast-with-pineapple-jam-tea-breakfast-rustic_501050-469.jpg",
},
]} ]}
title="Signature Flavors" title="Signature Flavors"
description="Hand-picked favorites from our traditional kitchen." description="Hand-picked favorites from our traditional kitchen."
buttons={[
{ text: "View Full Menu" }
]}
/> />
</div> </div>
@@ -164,29 +116,17 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
id: "c1", id: "c1", title: "Traditional Brewing", tags: [
title: "Traditional Brewing", "Authentic"],
tags: [ imageSrc: "http://img.b2bpic.net/free-photo/classic-teapot-isolated-marble-table_114579-30221.jpg"},
"Authentic",
],
imageSrc: "http://img.b2bpic.net/free-photo/classic-teapot-isolated-marble-table_114579-30221.jpg",
},
{ {
id: "c2", id: "c2", title: "Freshly Ground", tags: [
title: "Freshly Ground", "Aromatic"],
tags: [ imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-cezve-white-background-high-quality-photo_114579-68931.jpg"},
"Aromatic",
],
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-cezve-white-background-high-quality-photo_114579-68931.jpg",
},
{ {
id: "c3", id: "c3", title: "Served Hot", tags: [
title: "Served Hot", "Refreshing"],
tags: [ imageSrc: "http://img.b2bpic.net/free-photo/old-style-asian-coffee-set_53876-33838.jpg"},
"Refreshing",
],
imageSrc: "http://img.b2bpic.net/free-photo/old-style-asian-coffee-set_53876-33838.jpg",
},
]} ]}
title="The Art of Filter Coffee" title="The Art of Filter Coffee"
description="More than just a coffee, our traditional South Indian filter coffee is an experience. Hand-brewed and poured from height to perfect frothiness." description="More than just a coffee, our traditional South Indian filter coffee is an experience. Hand-brewed and poured from height to perfect frothiness."
@@ -200,40 +140,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ {
id: "t1", id: "t1", name: "Sarah J.", handle: "@sarahj", testimonial: "The best dosa I have ever tasted in Canada. Absolutely authentic!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg"},
name: "Sarah J.",
handle: "@sarahj",
testimonial: "The best dosa I have ever tasted in Canada. Absolutely authentic!",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg",
},
{ {
id: "t2", id: "t2", name: "Michael K.", handle: "@mickeyk", testimonial: "Incredible spices. The biryani is a must-try. Authentic flavor profile.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-happy-curly-woman-talking-by-phone_171337-16739.jpg"},
name: "Michael K.",
handle: "@mickeyk",
testimonial: "Incredible spices. The biryani is a must-try. Authentic flavor profile.",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-happy-curly-woman-talking-by-phone_171337-16739.jpg",
},
{ {
id: "t3", id: "t3", name: "Emily R.", handle: "@emilyr", testimonial: "Such a warm experience. The filter coffee was like being back home.", imageSrc: "http://img.b2bpic.net/free-photo/adorable-girl-with-long-hair-eating-vegetables-laughing-refined-lady-enjoying-favorite-salad_197531-17192.jpg"},
name: "Emily R.",
handle: "@emilyr",
testimonial: "Such a warm experience. The filter coffee was like being back home.",
imageSrc: "http://img.b2bpic.net/free-photo/adorable-girl-with-long-hair-eating-vegetables-laughing-refined-lady-enjoying-favorite-salad_197531-17192.jpg",
},
{ {
id: "t4", id: "t4", name: "David C.", handle: "@daveyc", testimonial: "Consistently delicious. My favorite spot for weekend lunch.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-man-performing-housework-gentle-dreamy-atmosphere_23-2151469409.jpg"},
name: "David C.",
handle: "@daveyc",
testimonial: "Consistently delicious. My favorite spot for weekend lunch.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-man-performing-housework-gentle-dreamy-atmosphere_23-2151469409.jpg",
},
{ {
id: "t5", id: "t5", name: "Priya N.", handle: "@priyan", testimonial: "Authentic taste, great service. Truly a hidden gem in Moncton.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187237.jpg"},
name: "Priya N.",
handle: "@priyan",
testimonial: "Authentic taste, great service. Truly a hidden gem in Moncton.",
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187237.jpg",
},
]} ]}
title="Voices of Cilantro 601" title="Voices of Cilantro 601"
description="See why our guests keep coming back." description="See why our guests keep coming back."
@@ -246,20 +161,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ {
id: "f1", id: "f1", title: "Address", content: "601 Main St, Moncton, NB"},
title: "Address",
content: "601 Main St, Moncton, NB",
},
{ {
id: "f2", id: "f2", title: "Hours", content: "Daily 11:00 AM - 10:00 PM"},
title: "Hours",
content: "Daily 11:00 AM - 10:00 PM",
},
{ {
id: "f3", id: "f3", title: "Parking", content: "Street parking available near the restaurant."},
title: "Parking",
content: "Street parking available near the restaurant.",
},
]} ]}
title="Visit Us" title="Visit Us"
description="We are centrally located and ready to serve you." description="We are centrally located and ready to serve you."
@@ -271,16 +177,13 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Reservation" tag="Reservation"
title="Book Your Table" title="Book Your Table"
description="Secure your spot at Cilantro 601 today." description="Secure your spot at Cilantro 601 today."
buttons={[ buttons={[
{ {
text: "Call Now", text: "Call Now", href: "tel:+15065550123"},
href: "tel:+15065550123",
},
]} ]}
/> />
</div> </div>
@@ -291,46 +194,29 @@ export default function LandingPage() {
logoText="Cilantro 601" logoText="Cilantro 601"
columns={[ columns={[
{ {
title: "Navigation", title: "Navigation", items: [
items: [
{ {
label: "Home", label: "Home", href: "#hero"},
href: "#hero",
},
{ {
label: "Menu", label: "Menu", href: "#menu"},
href: "#menu",
},
{ {
label: "About", label: "About", href: "#about"},
href: "#about",
},
], ],
}, },
{ {
title: "Socials", title: "Socials", items: [
items: [
{ {
label: "Instagram", label: "Instagram", href: "#"},
href: "#",
},
{ {
label: "Facebook", label: "Facebook", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "Privacy", label: "Privacy", href: "#"},
href: "#",
},
{ {
label: "Accessibility", label: "Accessibility", href: "#"},
href: "#",
},
], ],
}, },
]} ]}