Add analytics, formatting

This commit is contained in:
2025-08-27 10:02:41 +02:00
parent 07b71cdac9
commit fd73dde4cd
16 changed files with 57896 additions and 165 deletions
+7 -7
View File
@@ -1,16 +1,16 @@
import Link from 'next/link'
import Link from "next/link";
export default function NotFound() {
return (
<div className="flex flex-col items-center justify-center min-h-[calc(100vh-200px)]">
<h2 className="text-3xl font-bold mb-4">404 - Not Found</h2>
<div className="flex min-h-[calc(100vh-200px)] flex-col items-center justify-center">
<h2 className="mb-4 text-3xl font-bold">404 - Not Found</h2>
<p className="mb-6">Could not find the requested resource</p>
<Link
<Link
href="/"
className="px-4 py-2 bg-primary text-primary-foreground rounded-md hover:bg-primary/90"
className="rounded-md bg-primary px-4 py-2 text-primary-foreground hover:bg-primary/90"
>
Return Home
</Link>
</div>
)
}
);
}