Files
drop/promo/src/app/not-found.tsx
T
2026-02-18 15:23:24 +11: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>
)
}