mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 05:14:54 +00:00
15 lines
247 B
TypeScript
15 lines
247 B
TypeScript
import Head from 'next/head';
|
|
|
|
import NotfoundPage from '@/components/404';
|
|
|
|
export default function Custom404() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>404 - AFFiNE</title>
|
|
</Head>
|
|
<NotfoundPage></NotfoundPage>
|
|
</>
|
|
);
|
|
}
|