diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..7b67daa --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,65 @@ +"use client" + +import Link from "next/link" +import Footer from "@/components/footer" +import { Home } from "lucide-react" + +export default function NotFound() { + return ( +
+ {/* Header */} +
+
+
+ +

+ Stable Viewpoints +

+ +

Independent Articles about Stability

+
+ + Submit an Article + Submit + +
+
+ + {/* Main Content */} +
+
+ {/* Top accent line */} +
+ +
+

+ 404 +

+

+ Page Not Found +

+
+ +

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

+ +
+ + + Go to Homepage + +
+
+
+ +
+ ) +}