shivas-dosa/app/blog/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

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;