Merge version_4 into main #8

Merged
bender merged 1 commits from version_4 into main 2026-04-22 15:28:45 +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: "http://img.b2bpic.net/free-photo/fresh-bread-background_23-2148560155.jpg?_wi=2" },
{ 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: "http://img.b2bpic.net/free-photo/chocolate-cake-with-chocolate-chips_23-2148212170.jpg?_wi=2" },
{ id: "m4", name: "Fruit Tart", price: "$7", imageSrc: "http://img.b2bpic.net/free-photo/fruit-tart-white-plate_23-2148212165.jpg?_wi=2" },
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
title="Custom Order Form"
@@ -134,4 +152,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}