All checks were successful
Deploy / deploy (push) Successful in 18m31s
- Updated AGENTS.md with new guidelines for UI consistency, including badge and modal styles. - Refactored layout.tsx to improve the placement of the progressive blur effect. - Enhanced NotFound component text for better user guidance. - Replaced HeroFocusButton with HeroBaslik and KapanisCta in the Home component for improved clarity. - Added SiteFooter to multiple pages for consistent footer display. - Removed ListemSekmeleri component and adjusted ListemPage to streamline functionality. - Updated various components to ensure consistent styling and user experience.
25 lines
894 B
TypeScript
25 lines
894 B
TypeScript
import Link from "next/link";
|
||
import { Compass } from "lucide-react";
|
||
import { Button } from "@/components/ui/button";
|
||
|
||
export default function NotFound() {
|
||
return (
|
||
<main className="mx-auto flex min-h-[60vh] w-full max-w-md flex-col items-center justify-center px-4 py-16 text-center">
|
||
<Compass className="size-10 text-primary" aria-hidden />
|
||
<h1 className="mt-4 font-heading text-2xl font-bold">
|
||
Böyle bir sayfa yok
|
||
</h1>
|
||
<p className="mt-2 text-sm leading-6 text-slate-600">
|
||
Aradığın sayfa taşınmış ya da hiç var olmamış olabilir. Listeni
|
||
kurmaya ana sayfadan devam edebilirsin.
|
||
</p>
|
||
<Button
|
||
asChild
|
||
className="mt-6 cursor-pointer bg-orange-500 text-white transition-colors duration-200 hover:bg-orange-600"
|
||
>
|
||
<Link href="/">Ana sayfaya dön</Link>
|
||
</Button>
|
||
</main>
|
||
);
|
||
}
|