shivas-dosa/app/menu/page.js
Alaguraj0361 272035e69a
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-07-19 12:23:35 +05:30

30 lines
1007 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { AboutUs4 } from "@/components/AboutUs";
import Burger from "@/components/Burger";
import CategoryBanner from "@/components/CategoryBanner";
import Headline from "@/components/Headline";
import PageBanner from "@/components/PageBanner";
import RestaurantMenu from "@/components/RestaurantMenu";
import WellFoodLayout from "@/layout/WellFoodLayout";
export const metadata = {
title: "Indian Buffet & Dosa Menu Near Me | Shivas Dosa Ontario",
description:
"Explore our dosa menu and Indian buffet near me. Enjoy the best Indian food near me with fresh, authentic flavors in Ontario.",
};
const page = () => {
return (
<WellFoodLayout>
{/* Page Banner Start */}
<PageBanner bgImg="/assets/images/inner-banner/5.webp" pageTitle={"Menu"} />
{/* <div className="pt-100">
<Headline />
</div> */}
{/* Headline Area end */}
{/* Restaurant Menu Area start */}
<RestaurantMenu />
</WellFoodLayout>
);
};
export default page;