import { Link } from "react-router-dom"; import { ArrowRight } from "lucide-react"; import { Helmet } from "react-helmet-async"; import { Article } from "../data/articles"; import { motion } from "motion/react"; export function InsightsPage({ marketInsights }: { marketInsights: Article[] }) { return ( <> Insights & Blog | Rafael Fontes
Blog Pessoal

Artigos & Análises de Mercado

{marketInsights.map((post, index) => (
{post.date}

{post.title}

{post.excerpt}

Ler artigo completo{" "}
))}
); }