"use client";
import { motion } from "framer-motion";
import { Home, ArrowLeft, Search, Ghost, RefreshCcw } 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 (
{/* Liquid Background Blobs */}
{/* Large 404 with Liquid Animation */}
404
{/* Content Card */}
Lost in the Liquid.
The page you are looking for has evaporated or never existed in this dimension.
Back Home
Looking for my work? Explore projects
{/* Floating Help Badge */}
);
}