import Link from "next/link"; import { ArrowUpRight } from "lucide-react"; import { SectionHeading } from "@/components/shared/SectionHeading"; const blogPosts = [ { title: "How to Build a Custom AI Model for Your Business", image: "/images/tenext/portrait-confident-man.jpg", category: "AI Technology", date: "March 15, 2025", link: "/blog/custom-ai-model", }, { title: "The Future of Machine Learning in Enterprise", image: "/images/tenext/Group-18301.jpg", category: "Machine Learning", date: "April 2, 2025", link: "/blog/machine-learning-enterprise", }, { title: "Ethics in AI: What You Need to Know", image: "/images/tenext/3d-woman-shape-glowing-with-bright-holographic-colors-1-min.png", category: "AI Ethics", date: "April 10, 2025", link: "/blog/ethics-in-ai", }, ]; export function BlogSection() { return (
{blogPosts.map((post, index) => (
{post.title}
{post.category}
{post.date}

{post.title}

Read more
))}
); }