Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-03-27 05:24:03 +00:00

View File

@@ -29,17 +29,11 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Menu",
id: "#menu",
},
name: "Menu", id: "#menu"},
{
name: "About",
id: "#about",
},
name: "About", id: "#about"},
{
name: "Visit",
id: "#contact",
},
name: "Visit", id: "#contact"},
]}
brandName="Andorra Café"
/>
@@ -48,19 +42,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboard
background={{
variant: "sparkles-gradient",
}}
variant: "sparkles-gradient"}}
title="A Quiet Escape in Every Sip"
description="Premium coffee, refreshing matcha, and handcrafted drinks served in our calm, luxurious space."
buttons={[
{
text: "View Menu",
href: "#menu",
},
text: "View Menu", href: "#menu"},
{
text: "Visit Us",
href: "#contact",
},
text: "Visit Us", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-man-pouring-milk-into-cappuccino-cup-cafe_181624-12457.jpg"
/>
@@ -82,23 +71,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "d1",
name: "Passion Fruit Juice",
price: "$8",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-fruit-skewers_1153-1553.jpg",
},
id: "d1", name: "Passion Fruit Juice", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fruit-skewers_1153-1553.jpg"},
{
id: "d2",
name: "Cloudy Matcha + Coconut",
price: "$9",
imageSrc: "http://img.b2bpic.net/free-photo/glass-matcha-green-tea-with-latte-art-top_140725-6942.jpg",
},
id: "d2", name: "Cloudy Matcha + Coconut", price: "$9", imageSrc: "http://img.b2bpic.net/free-photo/glass-matcha-green-tea-with-latte-art-top_140725-6942.jpg"},
{
id: "d3",
name: "Fresh Mojito",
price: "$10",
imageSrc: "http://img.b2bpic.net/free-photo/drink-with-ice-peppermint_1203-474.jpg",
},
id: "d3", name: "Fresh Mojito", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/drink-with-ice-peppermint_1203-474.jpg"},
]}
title="Signature Drinks"
description="Handcrafted perfection in every glass."
@@ -107,37 +84,18 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="blur-reveal"
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{
id: "t1",
name: "Sarah J.",
role: "Local Visitor",
testimonial: "Best passion fruit juice Ive ever had. Truly refreshing.",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-medium-shot_23-2148692818.jpg",
},
id: "t1", name: "Sarah J.", role: "Local Visitor", testimonial: "Best passion fruit juice Ive ever had. Truly refreshing.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-medium-shot_23-2148692818.jpg"},
{
id: "t2",
name: "Michael C.",
role: "Remote Worker",
testimonial: "Perfect place to relax and get some work done. The atmosphere is unmatched.",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-drinking-coffee-urban-cafe_158595-680.jpg",
},
id: "t2", name: "Michael C.", role: "Remote Worker", testimonial: "Perfect place to relax and get some work done. The atmosphere is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-drinking-coffee-urban-cafe_158595-680.jpg"},
{
id: "t3",
name: "Emily R.",
role: "Coffee Enthusiast",
testimonial: "Amazing coffee recommendations. I visit every single morning.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-stylish-female-entrepreneur-working-outside-office-sit-cafe-look-outside-window-passersby-dreamy-smiling-holding-cup-coffee-enjoy-momentum-working-laptop-prepare-project_197531-30636.jpg",
},
id: "t3", name: "Emily R.", role: "Coffee Enthusiast", testimonial: "Amazing coffee recommendations. I visit every single morning.", imageSrc: "http://img.b2bpic.net/free-photo/attractive-stylish-female-entrepreneur-working-outside-office-sit-cafe-look-outside-window-passersby-dreamy-smiling-holding-cup-coffee-enjoy-momentum-working-laptop-prepare-project_197531-30636.jpg"},
{
id: "t4",
name: "David K.",
role: "Regular Patron",
testimonial: "Beautiful and quiet place. A hidden gem in the city.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-tying-up-her-hair_23-2148819882.jpg",
},
id: "t4", name: "David K.", role: "Regular Patron", testimonial: "Beautiful and quiet place. A hidden gem in the city.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-tying-up-her-hair_23-2148819882.jpg"},
]}
title="Stories from Andorra"
description="See why our guests choose us as their daily sanctuary."
@@ -148,14 +106,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "sparkles-gradient",
}}
variant: "sparkles-gradient"}}
text="Visit Andorra Café Today. Our team crafts every drink with care."
buttons={[
{
text: "Get Directions",
href: "#",
},
text: "Get Directions", href: "#"},
]}
/>
</div>
@@ -164,25 +119,17 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Café",
items: [
title: "Café", items: [
{
label: "Menu",
href: "#menu",
},
label: "Menu", href: "#menu"},
{
label: "Visit",
href: "#contact",
},
label: "Visit", href: "#contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}