import "../components/main" import getConfig from 'next/config' import Layout from "../components/main" import Link from 'next/link' export async function getServerSideProps(context) { const { serverRuntimeConfig } = getConfig() const secres = await fetch(serverRuntimeConfig.base_path + `/api/sections`) const secdata = await secres.json() const pagedata = {'title': 'About Angry Beanie'} return { props: { sections : secdata, pagedata }, // will be passed to the page component as props } } function About({sections, pagedata}) { return

About Angry Beanie

Welcome to Angry Beanie. A place where I stick stuff that I make, whether it's blog posts, podcasts, videos, photos, whatever. If I make it I put it here.

Contact me

If you want to get a hold of me regarding anything I put up here, you can get me on the socials.
Mastodon: https://aus.social/@purserj
Twitter: https://twitter.com/purserj
Instagram: https://www.instagram.com/purserj/
Pixelfed: https://pixelfed.au/purserj
} export default About