21 lines
660 B
JavaScript
21 lines
660 B
JavaScript
import ListOfBlogSection from "@/components/blog/ListOfBlogSection";
|
|
import PageBanner from "@/components/PageBanner";
|
|
import WellFoodLayout from "@/layout/WellFoodLayout";
|
|
import Link from "next/link";
|
|
|
|
export const metadata = {
|
|
title: "Shiva's Dosa Blog - Indian food & Buffet in Ontario",
|
|
description:
|
|
"Explore Indian food tips, buffet dining, and South Indian flavours near you in Ontario. Stay updated with Shiva's Dosa blog.",
|
|
};
|
|
|
|
const page = () => {
|
|
return (
|
|
<WellFoodLayout>
|
|
<PageBanner bgImg="/assets/images/inner-banner/2.webp" pageTitle={"Blog"} />
|
|
<ListOfBlogSection />
|
|
</WellFoodLayout>
|
|
);
|
|
};
|
|
export default page;
|