Changeset 87c9f1e for src/app/not-found.tsx
- Timestamp:
- 02/27/25 00:42:38 (5 weeks ago)
- Branches:
- main
- Children:
- 32e9876
- Parents:
- 3c5302a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/not-found.tsx
r3c5302a r87c9f1e 1 1 // sections 2 2 import { NotFoundView } from 'src/sections/error'; 3 import Link from 'next/link'; 3 4 4 5 // ---------------------------------------------------------------------- … … 8 9 }; 9 10 10 export default function NotFoundPage() { 11 return <NotFoundView />; 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 ); 12 21 }
Note:
See TracChangeset
for help on using the changeset viewer.