import type { FC } from 'react'; import { posts } from './posts'; import { ExternalLink } from '@cutting/component-library'; import { ApplicationLayout } from '../../layouts/ApplicationLayout'; export const Blog: FC = () => (

I blog professionally for Logrocket .
My personal blog is here.

{posts.map((post, i) => (

{post.title}

{post.summary}

Read More

))}
); export default Blog;