"use client"; import { motion } from "framer-motion"; import { Home, ArrowLeft, Search, Ghost, RefreshCcw, Terminal } from "lucide-react"; import Link from "next/link"; import { useRouter } from "next/navigation"; import { useEffect, useState } from "react"; export default function NotFound() { const [mounted, setMounted] = useState(false); const router = useRouter(); useEffect(() => { setMounted(true); }, []); if (!mounted) return null; return (
{/* Main Error Card */}
404
Error Report

Page not
Found.

The content you are looking for has been moved, deleted, or never existed.

Return Home
{/* Sidebar Cards */}
{/* Search/Explore Projects */}

Explore Work

Maybe what you need is in my project archive?

View Projects
{/* Visit the Lab */}

Technical

Check out my collection of code snippets and notes.

Enter the Lab
); }