4 Commits

Author SHA1 Message Date
409564ef8b Update src/app/page.tsx 2026-04-05 16:43:42 +00:00
e576d19c54 Merge version_3 into main
Merge version_3 into main
2026-04-05 16:42:13 +00:00
e6a39cc374 Update src/app/page.tsx 2026-04-05 16:42:07 +00:00
ec77f0c3fd Merge version_2 into main
Merge version_2 into main
2026-04-05 16:39:47 +00:00

View File

@@ -74,12 +74,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "c1", name: "Classic Vanilla", price: "Small", imageSrc: "http://img.b2bpic.net/free-photo/strawberry-crumble-bingsu_1339-4645.jpg" },
{ id: "c2", name: "Milk Chocolate", price: "Medium", imageSrc: "http://img.b2bpic.net/free-photo/side-view-ice-cream-strawberry-vanilla-chocolate-ice-cream-scoops_141793-3647.jpg" },
{ id: "c3", name: "Salted Caramel", price: "Large", imageSrc: "https://img.freepik.com/free-photo/salted-caramel-ice-cream-scoop-waffle-cone-wood-background_1150-41074.jpg" },
{ id: "c4", name: "Only 8 Dark Choc", price: "Low-Cal", imageSrc: "http://img.b2bpic.net/free-photo/energy-blueberry-mousse-cups_23-2148238677.jpg" },
{ id: "c5", name: "Only 8 Pistachio", price: "Low-Cal", imageSrc: "http://img.b2bpic.net/free-photo/swirled-green-yellow-cream-texture_23-2151988787.jpg" },
{ id: "c6", name: "Seasonal Special", price: "Rotating", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-musli-fresh-fruits-arrangement_23-2148267697.jpg" },
{ id: "c1", name: "Classic Vanilla", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/strawberry-crumble-bingsu_1339-4645.jpg" },
{ id: "c2", name: "Milk Chocolate", price: "$5.25", imageSrc: "http://img.b2bpic.net/free-photo/side-view-ice-cream-strawberry-vanilla-chocolate-ice-cream-scoops_141793-3647.jpg" },
{ id: "c3", name: "Salted Caramel", price: "$5.50", imageSrc: "https://img.freepik.com/free-photo/salted-caramel-ice-cream-scoop-waffle-cone-wood-background_1150-41074.jpg" },
{ id: "c4", name: "Only 8 Dark Choc", price: "$3.99", imageSrc: "http://img.b2bpic.net/free-photo/energy-blueberry-mousse-cups_23-2148238677.jpg" },
{ id: "c5", name: "Only 8 Pistachio", price: "$3.99", imageSrc: "http://img.b2bpic.net/free-photo/swirled-green-yellow-cream-texture_23-2151988787.jpg" },
{ id: "c6", name: "Seasonal Special", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-musli-fresh-fruits-arrangement_23-2148267697.jpg" },
]}
title="Our Flavors"
description="Flavors rotate — come back for something new!"
@@ -133,11 +133,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Yoz Yogurt"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "© 2024 Yoz Yogurt", href: "#" }}
leftLink={{ text: "Privacy Policy" }}
rightLink={{ text: "© 2024 Yoz Yogurt" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}