"use client"; import Link from "next/link"; import Image from "next/image"; import { blogArticles4, posts } from "@/data/blogs"; export default function Blogs() { return (
BLOGS

Helpful insights and tips for your
financial success journey

{blogArticles4.map((article) => (
{article.alt}

{article.date}

{article.title}
))}
{posts.map((post) => (
{post.alt}

{post.date}

{post.title}
))} View all stories
); }