www_ourverse_new/src/app/not-found.jsx
2024-09-10 17:23:53 +02:00

29 lines
1.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { BackgroundImage } from '@/components/BackgroundImage'
import { Button } from '@/components/Button'
import { Container } from '@/components/Container'
import { Layout } from '@/components/Layout'
export default function NotFound() {
return (
<Layout showFooter={false}>
<div className="relative flex h-full items-center py-20 sm:py-36">
<BackgroundImage className="-top-36 bottom-0" />
<Container className="relative flex w-full flex-col items-center">
<p className="font-display text-2xl tracking-tight text-purple-900">
404
</p>
<h1 className="mt-4 font-display text-4xl font-medium tracking-tighter text-purple-600 sm:text-5xl">
Page not found
</h1>
<p className="mt-4 text-lg tracking-tight text-purple-900">
Sorry, we couldnt find the page youre looking for.
</p>
<Button href="/" className="mt-8">
Go back home
</Button>
</Container>
</div>
</Layout>
)
}