Files
portfolio/app/not-found.tsx
denshooter 947f72ecca
Some checks failed
Production Deployment (Zero Downtime) / deploy-production (push) Has been cancelled
feat: Add interactive kernel panic 404 page
- Terminal-style 404 page with boot sequence
- Interactive command line with file system
- Easter eggs: hawkins/011, fsociety, 42, rm -rf /
- CRT monitor effects and visual glitches
- Audio synthesis for key presses and effects
- Full terminal emulator with commands: ls, cd, cat, grep, etc.
2026-01-09 19:26:08 +01:00

6 lines
127 B
TypeScript

import KernelPanic404 from './components/KernelPanic404';
export default function NotFound() {
return <KernelPanic404 />;
}