1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 06:59:09 +00:00
conky/web/pages/404.tsx
2024-02-26 13:21:37 -05:00

23 lines
621 B
TypeScript

import Layout from '../components/Layout'
import SEO from '../components/SEO'
import Doggy from '../components/Doggy'
export default function FourOhFour() {
return (
<Layout>
<SEO title="Conky" description="Conky documentation" />
<main className="w-full">
<div className="flex flex-col items-center">
<h1 className="text-4xl py-8 font-extrabold">404: Not found 😢</h1>
<Doggy />
<h2 className="text-3xl py-4 font-serif">Here&rsquo;s a doggy 😀</h2>
</div>
</main>
</Layout>
)
}
export function getStaticProps() {
return { props: {} }
}