6 Commits

Author SHA1 Message Date
610b98a2cc Update src/app/products/page.tsx 2026-04-13 16:05:14 +00:00
e28c97b8ab Update src/app/page.tsx 2026-04-13 16:05:14 +00:00
6730ca35a9 Update src/app/products/page.tsx 2026-04-13 16:04:50 +00:00
a047b8232e Update src/app/page.tsx 2026-04-13 16:04:50 +00:00
7374c91b74 Merge version_5 into main
Merge version_5 into main
2026-04-13 15:56:05 +00:00
8d086cbdb6 Merge version_5 into main
Merge version_5 into main
2026-04-13 15:55:41 +00:00
2 changed files with 14 additions and 4 deletions

View File

@@ -61,7 +61,12 @@ export default function LandingPage() {
title="Our Full Menu"
description="Discover our wide selection of handcrafted bagels, breakfast plates, and local favorites."
useInvertedBackground={false}
products={[]}
products={[
{ id: "1", name: "Plain Bagel", price: "$1.50", imageSrc: "https://images.unsplash.com/photo-1612182062632-9b486950269f?q=80&w=600&auto=format&fit=crop&_wi=1" },
{ id: "2", name: "Everything Bagel", price: "$1.75", imageSrc: "https://images.unsplash.com/photo-1584744982341-38374d001099?q=80&w=600&auto=format&fit=crop&_wi=1" },
{ id: "3", name: "Egg & Cheese", price: "$5.50", imageSrc: "https://images.unsplash.com/photo-1525351484163-7529414344d8?q=80&w=600&auto=format&fit=crop&_wi=1" },
{ id: "4", name: "Lox & Cream Cheese", price: "$8.00", imageSrc: "https://images.unsplash.com/photo-1531366936337-7cafc158525b?q=80&w=600&auto=format&fit=crop&_wi=1" }
]}
/>
</div>
@@ -99,4 +104,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -30,7 +30,12 @@ export default function ProductsPage() {
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
products={[]}
products={[
{ id: "1", name: "Plain Bagel", price: "$1.50", imageSrc: "https://images.unsplash.com/photo-1612182062632-9b486950269f?q=80&w=600&auto=format&fit=crop&_wi=2" },
{ id: "2", name: "Everything Bagel", price: "$1.75", imageSrc: "https://images.unsplash.com/photo-1584744982341-38374d001099?q=80&w=600&auto=format&fit=crop&_wi=2" },
{ id: "3", name: "Egg & Cheese", price: "$5.50", imageSrc: "https://images.unsplash.com/photo-1525351484163-7529414344d8?q=80&w=600&auto=format&fit=crop&_wi=2" },
{ id: "4", name: "Lox & Cream Cheese", price: "$8.00", imageSrc: "https://images.unsplash.com/photo-1531366936337-7cafc158525b?q=80&w=600&auto=format&fit=crop&_wi=2" }
]}
useInvertedBackground={false}
className="py-0"
/>
@@ -38,4 +43,4 @@ export default function ProductsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}