Minor updates

This commit is contained in:
2025-06-20 21:43:42 +02:00
parent e3326998c4
commit 4e1328147b
17 changed files with 344 additions and 369 deletions
+9 -17
View File
@@ -8,23 +8,15 @@ export default function NotFound() {
return (
<>
<main className="dark:bg-[#121212] text-foreground bg-background py-5">
<h1 className="text-7xl font-bold text-blue-400 text-center mt-16">
404
</h1>
<div className="flex min-h-screen flex-col items-center justify-between">
<div className="container mx-auto">
<div className="flex flex-col items-center justify-center">
<div className="mt-5 mb-3">
<div className="text-2xl font-semibold text-gray-600">
<p className="mt-2">Az keresett oldal nem található.</p>
<p className="mt-8 text-center">
<Link href="/">
<Button color="primary">Vissza</Button>
</Link>
</p>
</div>
</div>
</div>
<div className="flex min-h-screen flex-col items-center justify-center">
<h1 className="text-7xl font-bold text-blue-400">404</h1>
<div className="mt-5 mb-3 text-center">
<p className="text-2xl font-semibold text-gray-600">
Az keresett oldal nem található.
</p>
<Link href="/" className="mt-8 inline-block">
<Button color="primary">Vissza a főoldalra</Button>
</Link>
</div>
</div>
<Footer />