import MainTemplate from "@/templates/MainTemplate" import PostListing from "@/containers/PostListing" import { usePosts } from "@/hooks/usePosts" import roundedPortrait from "../images/round-portrait.png" 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 (
{/* Image - centers on mobile, left-aligned on desktop */}
Profile picture
{/* Text content */}

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 }