132 lines
2.8 KiB
JavaScript
132 lines
2.8 KiB
JavaScript
import Navbar from '@/components/Navbar';
|
|
import Footer from '@/components/Footer';
|
|
import ScrollToTop from '@/components/ScrollToTop';
|
|
import HeroBanner from '@/components/HeroBanner';
|
|
import MenuSection from '@/components/menu/MenuSection';
|
|
|
|
export const menuData = [
|
|
{
|
|
category: "Breakfast",
|
|
items: [
|
|
"Idly (2pcs)",
|
|
"Mini Sambar Idly",
|
|
"Thattu Idly (2pcs)",
|
|
"Ghee Podi Thattu Idly",
|
|
"Mini Ghee Podi Idly",
|
|
"Rava Khichdi",
|
|
"Sambar Idly (2 pcs)",
|
|
"Ghee Pongal",
|
|
"Kuzhi Paniyaram (10 pcs)",
|
|
"Idly with Paya (2 pcs)",
|
|
"Rasam Idly (2 pcs)",
|
|
"South Indian Thali (Weekends Only)",
|
|
"Poori Masala (2 Nos.)",
|
|
"Rasa Vada",
|
|
"Paruppu Vada (2 Nos.)",
|
|
"Pizza Dosa",
|
|
"Thayir Vada / Dhahi Vada",
|
|
"Sambar Vada"
|
|
]
|
|
},
|
|
{
|
|
category: "Appetizers",
|
|
items: [
|
|
"Thayir (Dahi) Vada (2 pcs)",
|
|
"Rasam Vada (2 pcs)",
|
|
"Sambar Vada (2 pcs)",
|
|
"Paruppu Vada (2 pcs)",
|
|
"Medhu Vada (2 pcs)",
|
|
"Chilli Gobi",
|
|
"Gobi Manchurian",
|
|
"Chilli Idly",
|
|
"Kothu Parotta",
|
|
"Chilli Paneer",
|
|
"Gobi / Paneer 65",
|
|
"Chilli Parotta"
|
|
]
|
|
},
|
|
{
|
|
category: "Breads",
|
|
items: [
|
|
"Poori Masala",
|
|
"Parotta (2 Nos.)",
|
|
"Chappathy's (2 Nos.)"
|
|
]
|
|
},
|
|
{
|
|
category: "Speciality Dosa",
|
|
items: [
|
|
"Onion Rava Dosa",
|
|
"Rava Dosa",
|
|
"Set Masala Dosa",
|
|
"Paneer Butter Masala Dosa",
|
|
"Butter Garlic Dosa",
|
|
"Mysore Masala Dosa",
|
|
"Onion Rava Masala Dosa",
|
|
"Rava Masala Dosa",
|
|
"Cheese Dosa",
|
|
"Chettinad Masala Dosa",
|
|
"Butter Masala Dosa"
|
|
]
|
|
},
|
|
{
|
|
category: "Lunch",
|
|
items: [
|
|
"Sambar Rice",
|
|
"Tamarind Rice",
|
|
"Bagala Bath (Curd Rice)",
|
|
"Rasam",
|
|
"Mini Meals",
|
|
"Lemon Rice",
|
|
"Veg Pulav"
|
|
]
|
|
},
|
|
{
|
|
category: "Utthappams",
|
|
items: [
|
|
"Plain Utthappam",
|
|
"Onion Utthappam",
|
|
"Onion Chilli Utthappam",
|
|
"Mixed Veg Utthappam",
|
|
"Ghee Podi Utthappam"
|
|
]
|
|
},
|
|
{
|
|
category: "Beverages",
|
|
items: [
|
|
"Special Madras Coffee",
|
|
"Special Chai"
|
|
]
|
|
},
|
|
{
|
|
category: "Combos",
|
|
items: [
|
|
"1 Idly & 1 Vada",
|
|
"2 Idly & 1 Vada"
|
|
]
|
|
}
|
|
];
|
|
|
|
export const metadata = {
|
|
title: 'Our Menu | My Dosa Place Restaurant',
|
|
description:
|
|
'Explore our authentic South Indian vegetarian menu — crispy dosas, fluffy idlis, rich curries, and more. 100% vegetarian, freshly made daily.',
|
|
};
|
|
|
|
export default function MenuPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main>
|
|
<HeroBanner
|
|
title="Our Menu"
|
|
bgImage="/images/south-indian-thali.png"
|
|
/>
|
|
<MenuSection />
|
|
</main>
|
|
<Footer />
|
|
<ScrollToTop />
|
|
</>
|
|
);
|
|
}
|