Merge version_6 into main #16

Merged
bender merged 2 commits from version_6 into main 2026-04-13 16:04:53 +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" },
{ id: "2", name: "Everything Bagel", price: "$1.75", imageSrc: "https://images.unsplash.com/photo-1584744982341-38374d001099?q=80&w=600&auto=format&fit=crop" },
{ id: "3", name: "Egg & Cheese", price: "$5.50", imageSrc: "https://images.unsplash.com/photo-1525351484163-7529414344d8?q=80&w=600&auto=format&fit=crop" },
{ 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" }
]}
/>
</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" },
{ id: "2", name: "Everything Bagel", price: "$1.75", imageSrc: "https://images.unsplash.com/photo-1584744982341-38374d001099?q=80&w=600&auto=format&fit=crop" },
{ id: "3", name: "Egg & Cheese", price: "$5.50", imageSrc: "https://images.unsplash.com/photo-1525351484163-7529414344d8?q=80&w=600&auto=format&fit=crop" },
{ 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" }
]}
useInvertedBackground={false}
className="py-0"
/>
@@ -38,4 +43,4 @@ export default function ProductsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}