Files
kolaytercih/src/app/not-found.tsx
bilalgursen b4effc8545
All checks were successful
Deploy / deploy (push) Successful in 18m31s
Refactor UI components for consistency and clarity across the application
- 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.
2026-08-02 04:28:27 +03:00

25 lines
894 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}