18 lines
672 B
JavaScript
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;
|