import { motion } from "motion/react"; import { Link } from "react-router-dom"; import { BLOG_POSTS } from "../lib/data"; const transition = { type: "spring", bounce: 0, duration: 0.8 }; export function Blog() { return (

Artigos

Explorações sobre desenvolvimento front-end, design de interfaces, arquitetura de software e tecnologia em geral.

{BLOG_POSTS.map((post, i) => ( {post.coverImage && (
{post.title}
)}
{post.coverImage && (
{post.title}
)}
{post.readTime}

{post.title}

{post.excerpt}

{post.tags.map(tag => ( {tag} ))}
))}
); }