main
Last change
on this file since 87c9f1e was 87c9f1e, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago |
update the seed script. update the prisma schema, use mapping
|
-
Property mode
set to
100644
|
File size:
631 bytes
|
Line | |
---|
1 | // sections
|
---|
2 | import { NotFoundView } from 'src/sections/error';
|
---|
3 | import Link from 'next/link';
|
---|
4 |
|
---|
5 | // ----------------------------------------------------------------------
|
---|
6 |
|
---|
7 | export const metadata = {
|
---|
8 | title: '404 Page Not Found!',
|
---|
9 | };
|
---|
10 |
|
---|
11 | export default function NotFound() {
|
---|
12 | return (
|
---|
13 | <div className="flex min-h-screen flex-col items-center justify-center">
|
---|
14 | <h2 className="text-2xl font-bold mb-4">Page Not Found</h2>
|
---|
15 | <p className="mb-4">Could not find requested resource</p>
|
---|
16 | <Link href="/" className="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600">
|
---|
17 | Return Home
|
---|
18 | </Link>
|
---|
19 | </div>
|
---|
20 | );
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.