main
Last change
on this file was 87c9f1e, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
update the seed script. update the prisma schema, use mapping
|
-
Property mode
set to
100644
|
File size:
631 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | // sections
|
---|
| 2 | import { NotFoundView } from 'src/sections/error';
|
---|
[87c9f1e] | 3 | import Link from 'next/link';
|
---|
[5d6f37a] | 4 |
|
---|
| 5 | // ----------------------------------------------------------------------
|
---|
| 6 |
|
---|
| 7 | export const metadata = {
|
---|
| 8 | title: '404 Page Not Found!',
|
---|
| 9 | };
|
---|
| 10 |
|
---|
[87c9f1e] | 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 | );
|
---|
[5d6f37a] | 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.