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

31 lines
1.1 KiB
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 { 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 Shivas Dosa | Best Indian Food Near Me Ontario",
description:
"Learn about Shivas 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;