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

23 lines
621 B
TypeScript
Raw Normal View History

2022-10-05 13:24:33 +00:00
import Layout from '../components/Layout'
import SEO from '../components/SEO'
import Doggy from '../components/Doggy'
2024-02-26 18:18:49 +00:00
export default function FourOhFour() {
2022-10-05 13:24:33 +00:00
return (
2024-02-26 18:18:49 +00:00
<Layout>
2022-10-05 13:24:33 +00:00
<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() {
2024-02-26 18:18:49 +00:00
return { props: {} }
2022-10-05 13:24:33 +00:00
}