mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
651 B
TypeScript
21 lines
651 B
TypeScript
import Spinner from '../components/Spinner'
|
|
import Wordmark from '../components/Wordmark'
|
|
import ReturnHome from '../components/ReturnHome'
|
|
import TitleText from '../components/TitleText'
|
|
|
|
export const metadata = {
|
|
title: 'FilePizza - 404: Slice Not Found',
|
|
description: 'Oops! This slice of FilePizza seems to be missing.',
|
|
}
|
|
|
|
export default async function NotFound(): Promise<JSX.Element> {
|
|
return (
|
|
<div className="flex flex-col items-center space-y-5 py-10 max-w-2xl mx-auto">
|
|
<Spinner direction="up" />
|
|
<Wordmark />
|
|
<TitleText>404: This slice of FilePizza is missing!</TitleText>
|
|
<ReturnHome />
|
|
</div>
|
|
)
|
|
}
|