From 803ab0e5d175c5bdd1484ae099d6161e6f5bedfa Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:30:03 +0000 Subject: [PATCH] Update app/menu/page.tsx --- app/menu/page.tsx | 90 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 app/menu/page.tsx diff --git a/app/menu/page.tsx b/app/menu/page.tsx new file mode 100644 index 0000000..f78ab2b --- /dev/null +++ b/app/menu/page.tsx @@ -0,0 +1,90 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Footer } from "@/components/footer"; +import { Phone } from "lucide-react"; + +const menuCategories = [ + { + title: "Signature Curry Goat", + items: [ + { name: "Curry Goat (Small)", price: "$1,000" }, + { name: "Curry Goat (Large)", price: "$1,500" }, + { name: "Mixed (Small)", price: "$1,200" }, + { name: "Mixed (Large)", price: "$1,600" }, + ] + }, + { + title: "Roti", + items: [ + { name: "Roti", price: "$150" }, + ] + }, + { + title: "Chicken Dishes", + items: [ + { name: "Fry Chicken", price: "Small $800 | Large $1,200" }, + { name: "Barbe Fry Chicken", price: "Small $950 | Large $1,300" }, + { name: "Sweet & Sour Chicken", price: "Small $950 | Large $1,300" }, + { name: "Curry Chicken", price: "Small $950 | Large $1,300" }, + ] + }, + { + title: "Traditional Dishes", + items: [ + { name: "Curry Tripe & Bean", price: "Small $950 | Large $1,300" }, + { name: "Cow Head & Bean", price: "Small $950 | Large $1,300" }, + { name: "Brown Stew Slice Fish", price: "$1,600" }, + ] + }, + { + title: "Soups", + items: [ + { name: "Goat Head Soup", price: "Small $200 | Medium $400" }, + ] + } +]; + +export default function MenuPage() { + return ( +
+
+ + Our Menu + Authentic flavors, generous portions. + +
+ + +
+ {menuCategories.map((category, idx) => ( +
+

+ {category.title} +

+
+ {category.items.map((item, i) => ( +
+ {item.name} +
+ {item.price} +
+ ))} +
+
+ ))} + +
+ +
+
+
+
+ ); +}