"use client"; import Link from 'next/link'; import { motion } from 'framer-motion'; import { HomeIcon } from 'lucide-react'; export default function NotFound() { return (
{/* Stars background */}
{Array.from({ length: 100 }).map((_, i) => { const size = Math.random() * 2 + 1; const opacity = Math.random() * 0.5 + 0.5; const animationDuration = Math.random() * 5 + 3; return ( ); })}
{/* Content */}

404

Lost in Space

The page you are looking for might have been moved, deleted, or perhaps never existed in this universe.

Return Home
{/* Floating Astronaut */}
); }