import MainTemplate from "@/templates/MainTemplate" import PostListing from "@/containers/PostListing" import { usePosts } from "@/hooks/usePosts" import { Card, CardHeader, CardContent, CardFooter } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Link } from "react-router" const HomePage = () => { const { posts } = usePosts() return (

Another software engineer with a blog 🥱

I'm a self-taught software engineer currently working at ITV, previously at the BBC. This blog is a technical scrapbook and digital garden.

) } export { HomePage }