diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index d8ed68c..01cd3c0 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -3,85 +3,34 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { useState } from "react"; - -const categories = [ - { id: "burgers", name: "Burgers" }, - { id: "street-food", name: "Street Food" }, - { id: "wraps", name: "Wraps" }, - { id: "fries", name: "Fries & Sides" }, - { id: "drinks", name: "Drinks" }, - { id: "milkshakes", name: "Milkshakes" }, -]; export default function MenuPage() { - const [activeCategory, setActiveCategory] = useState("burgers"); - return ( - + - - -
-

Our Menu

- -
- {categories.map((cat) => ( - - ))} -
- -
- {[1, 2, 3, 4, 5, 6].map((item) => ( -
-

Signature Item {item}

-

Delicious description of our amazing {categories.find(c => c.id === activeCategory)?.name || "dish"}.

-

$9.99

-
- ))} -
-
- -