import MainTemplate from "@/templates/MainTemplate" import PostListing from "@/containers/PostListing" import { usePosts } from "@/hooks/usePosts" import gruvboxComputer from "../images/gruvbox-computer.svg" import EolasListing from "@/components/EolasListing" import CodeStats from "../containers/CodeStats" // import TodayILearned from "@/containers/TodayILearned" const HomePage = () => { const { posts } = usePosts() return (

systems obscure

Software engineer at ITV. This is my technical scrapbook and digital garden.

post.tags.includes("highlight"))} />

{`> projects`}

  • eolas
  • A public frontend for my local Zettelkasten created with NodeJS, Python and React.

) } export { HomePage }