7 Commits

Author SHA1 Message Date
56d16666b9 Merge version_4 into main
Merge version_4 into main
2026-04-25 08:45:11 +00:00
9b377eb902 Update src/app/page.tsx 2026-04-25 08:45:08 +00:00
b154952144 Merge version_3 into main
Merge version_3 into main
2026-04-25 08:43:32 +00:00
42a7f8cbdd Update src/app/page.tsx 2026-04-25 08:43:29 +00:00
321e1cb7c7 Merge version_2 into main
Merge version_2 into main
2026-04-25 08:42:37 +00:00
86aea73a13 Update src/app/page.tsx 2026-04-25 08:42:34 +00:00
21f703fdc6 Merge version_1 into main
Merge version_1 into main
2026-04-25 08:41:56 +00:00

View File

@@ -63,6 +63,10 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[
{
text: "Order Now", href: "/order"},
]}
products={[ products={[
{ {
id: "1", name: "Classic Cheesecake", price: "$35", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/vanilla-crape-cake-with-strawberry-sauce_1339-7098.jpg"}, id: "1", name: "Classic Cheesecake", price: "$35", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/vanilla-crape-cake-with-strawberry-sauce_1339-7098.jpg"},
@@ -127,6 +131,9 @@ export default function LandingPage() {
id: "4", title: "How do I place a bulk order?", content: "For catering or bulk orders, please reach out via our contact page."}, id: "4", title: "How do I place a bulk order?", content: "For catering or bulk orders, please reach out via our contact page."},
{ {
id: "5", title: "Do you deliver?", content: "We currently offer local pickup only. We hope to expand to delivery in the future!"}, id: "5", title: "Do you deliver?", content: "We currently offer local pickup only. We hope to expand to delivery in the future!"},
{
id: "6", title: "What payment methods are accepted?", content: "We accept major credit cards, digital wallets, and cash at our shop during your pickup."
}
]} ]}
faqsAnimation="slide-up" faqsAnimation="slide-up"
/> />
@@ -136,7 +143,7 @@ export default function LandingPage() {
<MetricCardTwo <MetricCardTwo
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="uniform-all-items-equal" gridVariant="bento-grid"
useInvertedBackground={false} useInvertedBackground={false}
title="Our Bakery by the Numbers" title="Our Bakery by the Numbers"
description="Quality matters, and our numbers show it." description="Quality matters, and our numbers show it."
@@ -188,4 +195,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }