mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-16 18:15:17 +00:00
23 lines
621 B
TypeScript
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’s a doggy 😀</h2>
|
|
</div>
|
|
</main>
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export function getStaticProps() {
|
|
return { props: {} }
|
|
}
|