app router

This commit is contained in:
2025-06-20 05:15:23 +02:00
parent efc88bb5b8
commit e3326998c4
24 changed files with 391 additions and 383 deletions
+34
View File
@@ -0,0 +1,34 @@
"use client";
import { Button } from "@heroui/button";
import { Footer } from "@/components/Footer";
import Link from "next/link";
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>
</div>
<Footer />
</main>
</>
);
}