Ignore:
Timestamp:
02/27/25 00:42:38 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
32e9876
Parents:
3c5302a
Message:

update the seed script. update the prisma schema, use mapping

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/app/not-found.tsx

    r3c5302a r87c9f1e  
    11// sections
    22import { NotFoundView } from 'src/sections/error';
     3import Link from 'next/link';
    34
    45// ----------------------------------------------------------------------
     
    89};
    910
    10 export default function NotFoundPage() {
    11   return <NotFoundView />;
     11export 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  );
    1221}
Note: See TracChangeset for help on using the changeset viewer.