8 Commits

Author SHA1 Message Date
c819eaa4cc Update src/app/page.tsx 2026-04-23 21:44:31 +00:00
e19ddbb564 Merge version_4 into main
Merge version_4 into main
2026-04-23 21:42:05 +00:00
3d6c6dd96f Update src/app/page.tsx 2026-04-23 21:41:59 +00:00
b0bbe10340 Merge version_3 into main
Merge version_3 into main
2026-04-23 21:41:09 +00:00
4505c6e22f Update src/app/page.tsx 2026-04-23 21:41:06 +00:00
9317062aa5 Merge version_2 into main
Merge version_2 into main
2026-04-23 21:40:26 +00:00
9541b0d86e Merge version_2 into main
Merge version_2 into main
2026-04-23 21:39:59 +00:00
3c8b85d871 Merge version_2 into main
Merge version_2 into main
2026-04-23 21:39:23 +00:00

View File

@@ -49,9 +49,12 @@ export default function LandingPage() {
<HeroSplitDualMedia <HeroSplitDualMedia
background={{ background={{
variant: "plain"}} variant: "plain"}}
title="Flavor in Every Province" title="Gourmet Meals Delivered to Your Province"
description="We bring high-quality, authentic food and drinks from our kitchen to your doorstep, no matter where you are in the province." description="We bring high-quality, authentic food and drinks from our kitchen to your doorstep, no matter where you are in the province."
tag="Delivered Nationwide" tag="Delivered Nationwide"
buttons={[
{ text: "Order Now", href: "#products" }
]}
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/greek-salad-table_140725-9821.jpg?_wi=1", imageAlt: "Gourmet culinary spread"}, imageSrc: "http://img.b2bpic.net/free-photo/greek-salad-table_140725-9821.jpg?_wi=1", imageAlt: "Gourmet culinary spread"},
@@ -104,7 +107,7 @@ export default function LandingPage() {
<div id="products" data-section="products"> <div id="products" data-section="products">
<ProductCardThree <ProductCardThree
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="split-actions"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
@@ -121,6 +124,9 @@ export default function LandingPage() {
{ {
id: "p6", name: "Specialty Coffee", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-clear-glass-terrazzo-table_23-2151984964.jpg"}, id: "p6", name: "Specialty Coffee", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-clear-glass-terrazzo-table_23-2151984964.jpg"},
]} ]}
buttons={[
{ text: "View Full Menu", href: "/menu" }
]}
title="Our Signature Selection" title="Our Signature Selection"
description="Explore our curated range of gourmet food and artisanal drinks." description="Explore our curated range of gourmet food and artisanal drinks."
/> />
@@ -209,4 +215,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }