5 Commits

Author SHA1 Message Date
5c1dd6f493 Update src/app/page.tsx 2026-04-22 15:35:04 +00:00
55fd3a6bd7 Update src/app/page.tsx 2026-04-22 15:28:42 +00:00
c4d67a9710 Merge version_3 into main
Merge version_3 into main
2026-04-22 15:24:30 +00:00
0d67fb4a29 Merge version_3 into main
Merge version_3 into main
2026-04-22 15:24:01 +00:00
ced783e390 Merge version_3 into main
Merge version_3 into main
2026-04-22 15:23:35 +00:00

View File

@@ -36,7 +36,8 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Menu", id: "menu" },
{ name: "Custom Orders", id: "products" },
{ name: "Catering", id: "pricing" },
{ name: "Contact", id: "contact" },
]}
@@ -64,6 +65,23 @@ export default function LandingPage() {
/>
</div>
<div id="menu" data-section="menu">
<ProductCardThree
title="Our Daily Menu"
description="From sourdough loaves to decadent patisserie, explore our daily selection of freshly baked goods."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
products={[
{ id: "m1", name: "Signature Sourdough", price: "$8", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CgcQxUfmIXIhgNnkA4MqOZuFn8/uploaded-1776872045607-ah7p5p60.jpg" },
{ id: "m2", name: "Butter Croissant", price: "$4", imageSrc: "http://img.b2bpic.net/free-photo/croissants-wooden-table_23-2148161561.jpg?_wi=2" },
{ id: "m3", name: "Chocolate Cake Slice", price: "$6", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CgcQxUfmIXIhgNnkA4MqOZuFn8/uploaded-1776871939856-6i2h22la.webp" },
{ id: "m4", name: "Fruit Tart", price: "$7", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CgcQxUfmIXIhgNnkA4MqOZuFn8/uploaded-1776872068975-o20lvdt4.jpg" },
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
title="Custom Order Form"
@@ -134,4 +152,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}