import { Blog } from "@/utility/constant.utils"; import Link from "next/link"; const BlogSection = () => { return (
The Latest News What We Have

Our Latest Food News

{ Blog?.map((blog) => { return (
{blog?.slug}

{blog?.title}

{blog?.short_des}

Read more
) }) }
); }; export default BlogSection;