import Link from 'next/link'; /** * Custom 404 page styled with the Divisi dark theme. * * Features: * - Dark background (#0a0a0a) * - Accent color (#c8e600) for highlights * - Prominent "404" display * - Brief message and navigation link * - Matches Divisi brand aesthetic * * Requirements: 16.3 */ export default function NotFound() { return (
{/* Large 404 number */}

404

{/* Message */}

Page not found

The page you're looking for doesn't exist or has been moved.

{/* Navigation link */} Back to Dashboard
); }