31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import { AboutUs3 } from "@/components/AboutUs";
|
||
import BookTableForm from "@/components/BookTableForm";
|
||
import FoodCategory from "@/components/FoodCategory";
|
||
import Headline from "@/components/Headline";
|
||
import PageBanner from "@/components/PageBanner";
|
||
import { TestimonialSlider2 } from "@/components/TestimonialSlider";
|
||
import WellFoodLayout from "@/layout/WellFoodLayout";
|
||
import AboutUs from "@/components/AboutUs";
|
||
import Link from "next/link";
|
||
import TestimonialAbout from "@/components/TestimonialAbout";
|
||
|
||
export const metadata = {
|
||
title: "About Shiva’s Dosa | Best Indian Food Near Me Ontario",
|
||
description:
|
||
"Learn about Shiva’s Dosa, the best Indian food near me in Ontario, specializing in authentic South Indian dosas and buffet dining.",
|
||
};
|
||
const page = () => {
|
||
return (
|
||
<WellFoodLayout>
|
||
<PageBanner bgImg="/assets/images/inner-banner/4.webp" pageTitle={"About Us"} pageName={"About Us"} />
|
||
<AboutUs3 />
|
||
|
||
<AboutUs />
|
||
|
||
<TestimonialAbout />
|
||
{/* Testimonials Area end */}
|
||
</WellFoodLayout>
|
||
);
|
||
};
|
||
export default page;
|