// Blog / Journal section const Blog = () => { return (
{POSTS.slice(1).map(p => )}
The Atoms newsletter
One essay, one tool, one case-study link. Sent the Friday after we ship anything worth talking about.
); }; const FeaturedPost = ({ p }) => (
JOURNAL · {p.category.toUpperCase()}
Featured {p.category}
{p.read}

{p.title}

{p.excerpt}

{p.author}
{p.date.toUpperCase()}
{Icon.arrow()}
); const PostRow = ({ p }) => (
{p.category.slice(0,2).toUpperCase()}
{p.category} {p.read} · {p.date}

{p.title}

by {p.author}
); window.Blog = Blog;