2025-08-21 15:58:23 +08:00

116 lines
5.0 KiB
JavaScript

"use client";
import { slidesData } from "@/data/blogs";
import React from "react";
import { Pagination } from "swiper/modules";
import { Swiper, SwiperSlide } from "swiper/react";
import Image from "next/image";
import Link from "next/link";
export default function Blogs2() {
return (
<section id="snippet-2" className="wrapper !bg-[#ffffff] ">
<div className="container pt-20 xl:pt-28 lg:pt-28 md:pt-28 pb-16 xl:pb-20 lg:pb-20 md:pb-20">
<div className="flex flex-wrap mx-[-15px] xl:mx-[-35px] lg:mx-[-20px] !mt-[-50px] xl:!mt-0 lg:!mt-0">
<div className="xl:w-4/12 lg:w-4/12 w-full flex-[0_0_auto] xl:!px-[35px] lg:!px-[20px] !px-[15px] max-w-full xl:!mt-2 lg:!mt-2 !mt-[50px]">
<h2 className="!text-[calc(1.305rem_+_0.66vw)] font-bold xl:!text-[1.8rem] !leading-[1.3] !mb-3">
Our Journal
</h2>
<p className="lead !text-[1.05rem] !leading-[1.6] !mb-6 xxl:!pr-5">
Here are the latest news from our blog that got the most
attention.
</p>
<a
href="#"
className="btn btn-soft-primary !rounded-[50rem] hover:translate-y-[-0.15rem] hover:shadow-[0_0.25rem_0.75rem_rgba(30,34,40,0.05)]"
>
View All News
</a>
</div>
{/* /column */}
<div className="xl:w-8/12 lg:w-8/12 w-full flex-[0_0_auto] xl:!px-[35px] lg:!px-[20px] !px-[15px] max-w-full max-lg:!mt-[50px]">
<Swiper
className="swiper"
spaceBetween={30}
modules={[Pagination]}
pagination={{
clickable: true,
el: ".spd18",
}}
breakpoints={{
0: { slidesPerView: 1 },
575: {
slidesPerView: 1,
},
768: {
slidesPerView: 2,
},
}}
>
{slidesData.map((slide, index) => (
<SwiperSlide className="swiper-slide" key={index}>
<article>
<figure className="overlay overlay-1 hover-scale rounded !mb-6 group">
<a href="#">
<Image
className="!transition-all !duration-[0.35s] !ease-in-out group-hover:scale-105"
alt="image"
src={slide.imageSrc}
width={560}
height={350}
/>
</a>
<figcaption className="group-hover:opacity-100 absolute w-full h-full opacity-0 text-center px-4 py-3 inset-0 z-[5] pointer-events-none p-2">
<h5 className="from-top !mb-0 absolute w-full translate-y-[-80%] p-[.75rem_1rem] left-0 top-2/4">
Read More
</h5>
</figcaption>
</figure>
<div className="post-header">
<h2 className="post-title h3 !mb-3 !text-[1.1rem] !leading-[1.4]">
<Link
className="!text-[#343f52] hover:!text-[#343f52]"
href={`/blog-post`}
>
{slide.title}
</Link>
</h2>
</div>
<div className="post-footer">
<ul className="!text-[0.7rem] !text-[#aab0bc] m-0 p-0 list-none">
<li className="post-date inline-block">
<i className="uil uil-calendar-alt pr-[0.2rem] align-[-.05rem] before:content-['\e9ba']" />
<span>{slide.date}</span>
</li>
<li className="post-comments inline-block before:content-[''] before:inline-block before:w-[0.2rem] before:h-[0.2rem] before:opacity-50 before:mx-[0.6rem] before:my-0 before:rounded-[100%] before:bg-[#aab0bc] before:align-[0.15rem] !text-[.7rem]">
<a
className="!text-[#aab0bc] hover:!text-[#343f52]"
href="#"
>
<i className="uil uil-file-alt !text-[.75rem] pr-[0.2rem] align-[-.05rem] before:content-['\eaec']" />
{slide.category}
</a>
</li>
</ul>
</div>
</article>
</SwiperSlide>
))}
{/* /.swiper-wrapper */}
</Swiper>
<div className="swiper-controls">
<div className="swiper-pagination spd18"></div>
</div>
{/* /.swiper-container */}
</div>
{/* /column */}
</div>
{/* /.row */}
</div>
{/* /.container */}
{/* /.container */}
</section>
);
}