import Head from 'next/head' import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' import Link from 'next/link' import StaticContentList from '@/components/StaticContentList/StaticContentList' import { getStaticEntries } from '@/lib/content' export const getStaticProps = () => ({ props: { postEntries: getStaticEntries('content/writing') } }) export default function Home ({ postEntries }) { return (

Hello!

I'm Aaron, a Brit living in Newcastle-upon-tyne, UK. I work professionally as a Software Engineer, and study languages, history and philosophy in my spare time.

I current work as a Lead Consultant at Hippo Digital, working on public sector project for the Department of Education. You can find out more about my work history on my CV.

Recent posts

) }