"use client"; import { blogPosts } from "@/data/blogs"; import React from "react"; import { Swiper, SwiperSlide } from "swiper/react"; import Link from "next/link"; import Image from "next/image"; import { Pagination } from "swiper/modules"; export default function Blogs() { return (
Latest Articles

Get The Latest Updates

We provide timely updates on industry trends, regulatory changes, and
best practices to help you make informed decisions.

View Details
{blogPosts.map((post) => (
{post.alt} {post.alt}
  • {post.date}
  • {post.comments}
{post.title}
))}
); }