import MainTemplate from "@/templates/MainTemplate" import PostListing from "@/containers/PostListing" import { usePosts } from "@/hooks/usePosts" import roundedPortrait from "../images/round-portrait.png" import TodayILearned from "@/containers/TodayILearned" const HomePage = () => { const { posts } = usePosts() return (
{/*
Profile picture
*/}

Another software engineer with a blog

I'm a self-taught software engineer from London. This blog is a technical scrapbook and digital garden.

) } export { HomePage }