From 1cb4fdffe2b35252438d4128dd23aee6c2142a4f Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 30 Jan 2026 16:39:48 +0100 Subject: [PATCH] refactor: remove DataComparisonSection from homepage to enhance layout simplicity and maintainability --- app/not-found.tsx | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 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..f176abb --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,44 @@ +import Link from 'next/link' +import { Button } from '@ciphera-net/ui' + +export default function NotFound() { + return ( +
+ {/* * --- ATMOSPHERE (Background) --- */} +
+ {/* * Center Orange Glow */} +
+ {/* * Grid Pattern with Radial Mask */} +
+
+ +
+

+ 404 +

+

+ Page not found +

+

+ Sorry, we couldn't find the page you're looking for. It might have been moved or deleted. +

+ +
+ + + + + + +
+
+
+ ) +}