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

Our News

Here are the latest company news from our blog that got the most attention.

{/* /column */}
{/* /.row */}
{blogPosts.map((post, index) => (
image
Read More

{post.title}

{/* /.post-header */}

{post.content}

{/* /.post-content */}
{/*/.card-body */}
{/* /.post-meta */}
{/* /.card-footer */}
{/* /.card */}
{/* /article */}
{/* /.item-inner */}
))} {/*/.swiper-wrapper */}
{/* /.swiper */}
{/* /.swiper-container */}
{/* /.relative */}
); }