import Image from "next/image"; import { ChevronRight } from "lucide-react"; import DotAnimatsiya from "@/components/dot/DotAnimatsiya"; const blogPosts = [ { id: 1, image: "/images/img14.webp", category: "Tips & Trick", title: "BEHIND THE HELMET: LIFE AS A FIREFIGHTER", author: "John Doe", date: "July 24, 2025", }, { id: 2, image: "/images/img15.webp", category: "Insight", title: "FIREFIGHTING EQUIPMENT: TOOLS OF THE TRADE", author: "John Doe", date: "July 24, 2025", }, { id: 3, image: "/images/img16.webp", category: "News", title: "FIREFIGHTER TRAINING TAKES TO BECOME A HERO", author: "John Doe", date: "July 24, 2025", }, ]; export function Blog() { return (
{/* Header */}
Blog & Articles

LATEST BLOG & NEWS

{/* Blog Cards Grid */}
{blogPosts.map((post) => (
{/* Image Container */}
{post.title} {/* Category Badge */}
{post.category}
{/* Content */}

{post.title}

by {post.author} {post.date}

Read More
))}
); }