"use client"; import { blogPosts } from "@/data/blogs"; import Image from "next/image"; import Link from "next/link"; import { Pagination } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; export default function RelatedBlogs() { return (
{blogPosts.map((post, i) => (
image
Read More
{/* /.post-category */}

{post.title}

{/* /.post-header */}
  • {post.date}
  • 4
{/* /.post-meta */}
{/* /.post-footer */}
{/* /article */}
))} {/*/.swiper-wrapper */}
{/* /.swiper */}
); }