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

Insights From Our Press

Discover the latest insights and trends in our most recent articles. Stay informed and
up to date on the topics that matter most to you.

{blogArticles.map((article) => (
blog
  • {article.category}
  • {article.date}
{article.title}
))}
); }