3 Commits

Author SHA1 Message Date
03a5dd662b Update src/app/page.tsx 2026-03-12 16:45:08 +00:00
f3c10dd881 Switch to version 5: modified src/app/page.tsx 2026-03-12 16:36:34 +00:00
2bad0e0ac5 Merge version_6 into main
Merge version_6 into main
2026-03-12 16:34:01 +00:00

View File

@@ -47,6 +47,7 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }}
tag="Local Favorite"
tagIcon={Sparkles}
imageSrc="http://img.b2bpic.net/free-photo/hot-steaming-crispy-fried-chicken-wings_84443-82019.jpg"
imageAlt="Fresh colorful restaurant food platter"
buttons={[
{ text: "View Menu", href: "#products" },
@@ -322,6 +323,39 @@ export default function LandingPage() {
/>
</div>
<div id="beverages" data-section="beverages">
<ProductCardOne
title="Refreshing Beverages"
description="Quench your thirst with our selection of ice-cold sodas, fresh lemonades, and specialty drinks."
tag="Drinks & Beverages"
tagIcon={Star}
textboxLayout="default"
useInvertedBackground={false}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
products={[
{
id: "bev-1", name: "Freshly Squeezed Lemonade", price: "$3.49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AotlanrO6Nk1cglBufIaJoSPxd/uploaded-1773332463171-v75v6fd8.png?_wi=15", imageAlt: "Freshly squeezed lemonade"
},
{
id: "bev-2", name: "Mango Iced Tea", price: "$3.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AotlanrO6Nk1cglBufIaJoSPxd/uploaded-1773332463171-kmn3y8pn.png?_wi=11", imageAlt: "Mango iced tea"
},
{
id: "bev-3", name: "Classic Cola", price: "$2.49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AotlanrO6Nk1cglBufIaJoSPxd/uploaded-1773332463171-72bjl39m.png?_wi=12", imageAlt: "Classic cola"
},
{
id: "bev-4", name: "Strawberry Banana Smoothie", price: "$5.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AotlanrO6Nk1cglBufIaJoSPxd/uploaded-1773332463171-9axm48uf.png?_wi=11", imageAlt: "Strawberry banana smoothie"
},
{
id: "bev-5", name: "Tropical Punch", price: "$3.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AotlanrO6Nk1cglBufIaJoSPxd/uploaded-1773332463171-v75v6fd8.png?_wi=16", imageAlt: "Tropical punch"
},
{
id: "bev-6", name: "Iced Ginger Ale", price: "$2.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AotlanrO6Nk1cglBufIaJoSPxd/uploaded-1773332463171-kmn3y8pn.png?_wi=12", imageAlt: "Iced ginger ale"
}
]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardFourteen
title="Trusted by Cincinnati for our commitment to quality, flavor, and creating a community gathering space where great food meets great vibes."
@@ -404,4 +438,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}