Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-04-24 12:23:28 +00:00

View File

@@ -30,7 +30,7 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<Suspense fallback={<div className="h-20" />}>
<Suspense fallback={<div className="h-screen w-full flex items-center justify-center" />}>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
@@ -86,12 +86,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
{ id: "p1", name: "Latte", price: "$5.00", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/dark-coffee-mug-viewed-from_1232-1151.jpg?w=400&q=70" },
{ id: "p2", name: "Iced Coffee", price: "$4.50", variant: "Seasonal", imageSrc: "http://img.b2bpic.net/free-photo/woman-s-hands-holding-cup-coffee-cafe_1150-4324.jpg?w=400&q=70" },
{ id: "p3", name: "Cold Brew", price: "$4.75", variant: "Smooth", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-delicious-iced-coffee_52683-91638.jpg?w=400&q=70" },
{ id: "p4", name: "Cortado", price: "$4.00", variant: "Balanced", imageSrc: "http://img.b2bpic.net/free-photo/tool-used-coffee-machine-coffee-making-process_23-2150187528.jpg?w=400&q=70" },
{ id: "p5", name: "Cappuccino", price: "$4.50", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/2-latte-wooden-table_501050-1095.jpg?w=400&q=70" },
{ id: "p6", name: "Whole Bean Roast", price: "$18.00", variant: "Retail", imageSrc: "http://img.b2bpic.net/free-photo/side-view-brown-coffee-beans-sack-rustic-table_141793-6964.jpg?w=400&q=70" },
{ id: "p1", name: "Latte", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/dark-coffee-mug-viewed-from_1232-1151.jpg?w=400&q=70" },
{ id: "p2", name: "Iced Coffee", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/woman-s-hands-holding-cup-coffee-cafe_1150-4324.jpg?w=400&q=70" },
{ id: "p3", name: "Cold Brew", price: "$4.75", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-delicious-iced-coffee_52683-91638.jpg?w=400&q=70" },
{ id: "p4", name: "Cortado", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/tool-used-coffee-machine-coffee-making-process_23-2150187528.jpg?w=400&q=70" },
{ id: "p5", name: "Cappuccino", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/2-latte-wooden-table_501050-1095.jpg?w=400&q=70" },
{ id: "p6", name: "Whole Bean Roast", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-brown-coffee-beans-sack-rustic-table_141793-6964.jpg?w=400&q=70" },
]}
title="The Coffee Menu"
description="Hand-crafted beverages using our own freshly roasted beans. Taste the difference quality makes."
@@ -104,31 +104,29 @@ export default function LandingPage() {
title="Impact & Growth"
tag="Our Story"
metrics={[
{ id: "m1", value: "4.6", description: "Avg Star Rating (450+ Reviews)" },
{ id: "m2", value: "100%", description: "Direct Sourcing Transparency" },
{ id: "m3", value: "12k+", description: "Cups Poured Monthly" },
{ id: "m1", title: "Avg Star Rating", value: "4.6" },
{ id: "m2", title: "Direct Sourcing", value: "100%" },
{ id: "m3", title: "Cups Poured", value: "12k+" },
]}
metricsAnimation="slide-up"
animationType="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="split"
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={true}
title="What Our Neighbors Say"
description="Join our community of coffee lovers who value craft, quality, and atmosphere."
testimonials={[
{ id: "1", name: "Yuji Tk", handle: "@yuji_tk", testimonial: "My favorite roaster in the entire Detroit area.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-smiling-woman-holding-cup-coffee-posing-kitchen-enjoying_1258-198203.jpg?w=100&q=60" },
{ id: "2", name: "Rosanna Ramos", handle: "@rosanna", testimonial: "The space felt cozy and toasty, with an open-air vibe.", imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-using-laptop-cafe_23-2147785380.jpg?w=100&q=60" },
{ id: "3", name: "Luke Salik", handle: "@lukes", testimonial: "Consistently came up as one of the best.", imageSrc: "http://img.b2bpic.net/free-photo/two-young-women-with-cup-coffee-looking-each-other_23-2147894404.jpg?w=100&q=60" }
]}
testimonial="My favorite roaster in the entire Detroit area."
rating={5}
author="Yuji Tk"
avatars={[{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-smiling-woman-holding-cup-coffee-posing-kitchen-enjoying_1258-198203.jpg?w=100&q=60", alt: "Yuji Tk" }]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
faqsAnimation="slide-up"
textboxLayout="split"
useInvertedBackground={false}
faqs={[
@@ -138,7 +136,6 @@ export default function LandingPage() {
]}
title="Common Questions"
description="Answers to how we roast, serve, and welcome our community."
faqsAnimation="slide-up"
/>
</div>
@@ -147,21 +144,18 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Visit Us in Detroit"
description="Stop by for a pour-over or order online for pickup. Visit us: https://maps.google.com/?q=1948+Division+St+Detroit"
inputs={[{ name: "name", type: "text", placeholder: "Your Name", required: true }, { name: "email", type: "email", placeholder: "Your Email", required: true }]}
textarea={{ name: "message", placeholder: "How can we help?" }}
imageSrc="http://img.b2bpic.net/free-photo/male-barista-holing-professional-coffee-machine_23-2148824383.jpg?w=800&q=80"
tag="Visit"
buttons={[{ text: "Get Directions" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Anthology Coffee"
leftLink={{ text: "Privacy", href: "#" }}
rightLink={{ text: "Terms", href: "#" }}
/>
</div>
</Suspense>
</ReactLenis>
</ThemeProvider>
);
}
}