diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..fd7f809 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function MenuPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 1f1c8b2..6fde968 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,22 +29,11 @@ export default function LandingPage() { @@ -89,30 +68,13 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "bowl-1", - name: "Classic Poke Bowl", - price: "$14.99", - variant: "Fresh", - imageSrc: "http://img.b2bpic.net/free-photo/pepper-parsley-near-salad_23-2147778429.jpg", - }, - { - id: "bowl-2", - name: "Green Power Bowl", - price: "$12.99", - variant: "Vegan", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-italian-pasta-salad-with-fresh-tomato-cheese-lettuce-pickled-olives-bowl_140725-12562.jpg", - }, - { - id: "bowl-3", - name: "Chicken Bliss Bowl", - price: "$13.99", - variant: "Protein", - imageSrc: "http://img.b2bpic.net/free-psd/colorful-fresh-salad-bowl-with-avocado-feta-mixed-greens_9975-132659.jpg", - }, + { id: "bowl-1", name: "Classic Poke Bowl", price: "$14.99", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/pepper-parsley-near-salad_23-2147778429.jpg" }, + { id: "bowl-2", name: "Green Power Bowl", price: "$12.99", variant: "Vegan", imageSrc: "http://img.b2bpic.net/free-photo/top-view-italian-pasta-salad-with-fresh-tomato-cheese-lettuce-pickled-olives-bowl_140725-12562.jpg" }, + { id: "bowl-3", name: "Chicken Bliss Bowl", price: "$13.99", variant: "Protein", imageSrc: "http://img.b2bpic.net/free-psd/colorful-fresh-salad-bowl-with-avocado-feta-mixed-greens_9975-132659.jpg" }, ]} title="Our Signature Bowls" description="Handcrafted bowls featuring locally sourced ingredients." + buttons={[{ text: "View Full Menu", href: "/menu" }]} /> @@ -122,34 +84,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Sarah J.", - handle: "@sarahj", - testimonial: "The best healthy lunch spot in town! Absolutely delicious.", - imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6425.jpg", - }, - { - id: "2", - name: "Mike T.", - handle: "@miket", - testimonial: "Fresh ingredients and amazing staff. Highly recommend the poke bowl.", - imageSrc: "http://img.b2bpic.net/free-photo/red-chair-table-cafe_1339-8016.jpg", - }, - { - id: "3", - name: "Elena R.", - handle: "@elenar", - testimonial: "I love the variety of bowls available. Always fresh.", - imageSrc: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg", - }, - { - id: "4", - name: "David W.", - handle: "@davidw", - testimonial: "A great addition to Waterloo dining. Super healthy and fast.", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adorable-young-lady-wearing-white-shirt-jeans-sitting-cozy-cafe-drinking-tasty-coffee-relaxing-after-work_291650-1362.jpg", - }, + { id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "The best healthy lunch spot in town!", imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6425.jpg" }, + { id: "2", name: "Mike T.", handle: "@miket", testimonial: "Fresh ingredients and amazing staff.", imageSrc: "http://img.b2bpic.net/free-photo/red-chair-table-cafe_1339-8016.jpg" }, ]} title="Loved by Waterloo" description="What our guests are saying about their Jabowl experience." @@ -159,52 +95,17 @@ export default function LandingPage() {