Alaguraj0361 107f07c035
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-09-26 21:09:39 +05:30

18 lines
672 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: "Blog - Authentic South Indian Restaurant",
description: "Stay updated with the latest on Indian cuisine, South Indian dishes, and food trends in Mississauga. Check out our blog for tips, recipes, and more!",
};
const page = () => {
return (
<WellFoodLayout>
<PageBanner pageTitle={"Blog"} background="/assets/images/inner-banner/2.webp" />
<ListOfBlogSection />
</WellFoodLayout>
);
};
export default page;