From b97633dd9516fd5c59de1a7223e03195ee961b15 Mon Sep 17 00:00:00 2001 From: AbhishekChamp879 Date: Tue, 19 May 2026 12:01:21 +0530 Subject: [PATCH] feat: add custom 404 error page with branding and responsive design --- public/404.html | 162 ++++++++++++++++++++++++++++++++++++++++++ src/app/not-found.tsx | 34 --------- 2 files changed, 162 insertions(+), 34 deletions(-) create mode 100644 public/404.html delete mode 100644 src/app/not-found.tsx diff --git a/public/404.html b/public/404.html new file mode 100644 index 00000000..a594c70a --- /dev/null +++ b/public/404.html @@ -0,0 +1,162 @@ + + + + + + 404 — Frame Not Found | Reframe + + + + + +
+ +
+ + + + + + Reframe +
+ + +
404
+
+ +

Frame not found

+

This reel is empty. The page you're looking for doesn't exist.

+ + ← Back to Reframe +
+ + diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx deleted file mode 100644 index 88d6f4cc..00000000 --- a/src/app/not-found.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import Link from "next/link"; - -import {Film} from 'lucide-react' -export default function NotFound() { - return ( -
-
- - REFRAME -
- - 404 - - -
- -

- Frame not found -

- -

- This reel is empty. The page you're looking for doesn't exist. -

- - - ← Back to Reframe - -
- ) -} -