122 lines
4.4 KiB
XML
122 lines
4.4 KiB
XML
"use client";
|
|
|
|
import SubpageLayout from "@/components/SubpageLayout";
|
|
import InnerBanner from "@/components/InnerBanner";
|
|
import MenuPageContent from "@/components/MenuPageContent";
|
|
|
|
export default function MenuPage() {
|
|
return (
|
|
<SubpageLayout>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{
|
|
__html: `{
|
|
"@context": "https://schema.org",
|
|
"@type": "Menu",
|
|
"@id": "https://mydosaplace.ca/menu/#menu",
|
|
"name": "My Dosa Place Menu",
|
|
"description": "Explore our full South Indian menu in Waterloo — masala dosa, uthappam, vada, thali, tiffin & filter coffee. 100% pure vegetarian, made fresh daily.",
|
|
"url": "https://mydosaplace.ca/menu/",
|
|
"inLanguage": "en",
|
|
"hasMenuSection": [
|
|
{
|
|
"@type": "MenuSection",
|
|
"name": "Idly & Vada",
|
|
"description": "Crispy, flavorful, authentic steamed and fried lentil-rice classics.",
|
|
"hasMenuItem": [
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Idly (2 pcs)",
|
|
"description": "south Indian best Soft steamed rice-lentil cakes served with chutney and sambar.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Thattu Idly (1 pc)",
|
|
"description": "100% pure Plate-style fluffy idly with a homestyle South Indian touch.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Thattu Idly (2 pcs)",
|
|
"description": "Extra serving of soft thattu idly for hearty appetites.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Ghee Podi Idly",
|
|
"description": "Idly tossed with ghee and signature podi for bold flavour.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Mini Sambar Idly",
|
|
"description": "Bite-sized idlies soaked in hot aromatic sambar.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Sambar Idly",
|
|
"description": "Classic idly dipped in comforting house-made sambar.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Medhu Vada",
|
|
"description": "Golden lentil doughnuts, crisp outside and soft inside.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Sambar Vada",
|
|
"description": "Crispy medhu vada soaked in warm, flavourful sambar.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Dahi Vada",
|
|
"description": "Soft vada topped with creamy yogurt and sweet-spiced chutneys.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Rasam Vada",
|
|
"description": "Savoury vada immersed in peppery, tangy rasam.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
},
|
|
{
|
|
"@type": "MenuItem",
|
|
"name": "Paruppu Vada",
|
|
"description": "Crispy chana-dal fritters with onion, herbs, and spices.",
|
|
"suitableForDiet": "https://schema.org/VegetarianDiet"
|
|
}
|
|
]
|
|
},
|
|
{ "@type": "MenuSection", "name": "Breads" },
|
|
{ "@type": "MenuSection", "name": "Tiffin Specials" },
|
|
{ "@type": "MenuSection", "name": "Signature Dosas" },
|
|
{ "@type": "MenuSection", "name": "Combos" },
|
|
{ "@type": "MenuSection", "name": "Sides" },
|
|
{ "@type": "MenuSection", "name": "Chef's Specialty" },
|
|
{ "@type": "MenuSection", "name": "Rava Specials" },
|
|
{ "@type": "MenuSection", "name": "Utthappam" },
|
|
{ "@type": "MenuSection", "name": "Appetizers" },
|
|
{ "@type": "MenuSection", "name": "Rice Dishes" },
|
|
{ "@type": "MenuSection", "name": "Weekend Special" },
|
|
{ "@type": "MenuSection", "name": "Desserts" },
|
|
{ "@type": "MenuSection", "name": "Beverages" }
|
|
]
|
|
}`
|
|
}}
|
|
/>
|
|
<div className="flex flex-col">
|
|
|
|
{/* Inner Banner */}
|
|
<InnerBanner pageName="Menu" bgImage="/images/inner-banner/2.webp" />
|
|
|
|
<MenuPageContent />
|
|
</div>
|
|
</SubpageLayout>
|
|
);
|
|
}
|