diff --git a/src/app/page.tsx b/src/app/page.tsx index 895252e..040ff92 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" } + ]} /> @@ -99,4 +104,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 0cadfa6..11bc863 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -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() { ); -} \ No newline at end of file +}