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

Company news from our blog that got the most attention.

{/*/column */}
View All News
{/*/column */}
{/*/.row */}
{blogPosts4.map((post) => ( ))} {/* /.post */}
{/* /column */}
{slidesData.slice(0, 2).map((post, i) => (
image
Read More
{/* /.post-category */}

{post.title}

{/* /.post-header */}
  • {post.date}
  • 4
{/* /.post-meta */}
{/* /.post-footer */}
{/* /.post */}
))}
{/* /.row */}
{/* /column */}
{/* /.row */}
{/* /.container */} {/* /.container */}
); }