diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..0a5a32b --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,45 @@ +"use client" + +import { motion } from "motion/react" +import Link from "next/link" + +export default function NotFound() { + return ( +
+ + 404 + + + This page doesn't exist yet + + + The page you're looking for hasn't been built yet, or may have + been moved. + + + + Back to Home + + +
+ ) +}