From 20027ecc3de3eec26261c581e00b4962625140b2 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sat, 25 Apr 2026 14:44:52 +0800 Subject: [PATCH] feat: add styled 404 page matching landing page theme --- app/not-found.tsx | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 app/not-found.tsx 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 + + +
+ ) +}