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 (
404 Page not found

Sorry, we couldn't find the page you're looking for.

) }