Files
Husky ff1144e016 Improve repo tooling (#398)
* add basic git files to root

* make server part of monorepo

* import promo

* import libraries base

* import docs

* import desktop

* move docs and promo
2026-04-20 11:44:38 +10:00

35 lines
1.0 KiB
TypeScript

import { Container } from '@/components/container'
import { Footer } from '@/components/footer'
import { GradientBackground } from '@/components/gradient'
import { Navbar } from '@/components/navbar'
import { Heading, Subheading } from '@/components/text'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Not Found',
description: "We couldn't find this page, or doesn't exist.",
}
export default function About() {
return (
<main className="overflow-hidden">
<GradientBackground />
<Container>
<Navbar />
</Container>
<main className="grid min-h-full place-items-center px-6 py-24 sm:py-32 lg:px-8">
<div className="text-center">
<Subheading>404</Subheading>
<Heading>
Page not found
</Heading>
<p className="mt-6 text-lg font-medium text-pretty text-gray-500 sm:text-xl/8">
Sorry, we couldn&apos;t find the page you&apos;re looking for.
</p>
</div>
</main>
<Footer />
</main>
)
}