import Layout from "@/components/layout/Layout" import Link from "next/link" import { recipesList } from "../../../utility/constant.utils"; export default function Recipes() { return ( <>

Recipes

Home Recipes
{/*===== HERO AREA ENDS =======*/} {/*===== BLOG AREA STARTS =======*/}
{recipesList.map((post) => (
{post.title}
  • {post.date} |
  • {post.user}
{post.title.length > 40 ? `${post.title.slice(0, 40)}...` : post?.title}
read more
)) }
{/*
*/}
) }