Spaces:
Runtime error
Runtime error
| import Link from "next/link"; | |
| import { Button } from "@/components/ui/button"; | |
| import { Card, CardContent } from "@/components/ui/card"; | |
| export default function NotFound() { | |
| return ( | |
| <main className="flex min-h-screen items-center justify-center px-4 py-10"> | |
| <Card className="w-full max-w-xl"> | |
| <CardContent className="space-y-6 p-8 text-center"> | |
| <div className="space-y-3"> | |
| <p className="text-sm font-semibold text-[var(--foreground-soft)]"> | |
| 404 | |
| </p> | |
| <h1 className="text-3xl font-bold text-[var(--foreground)]"> | |
| الصفحة دي مش موجودة | |
| </h1> | |
| <p className="text-base leading-8 text-[var(--foreground-muted)]"> | |
| ممكن الرابط يكون غلط، أو الصفحة دي لسه مش متاحة في النسخة الحالية | |
| من المنصة. | |
| </p> | |
| </div> | |
| <Button asChild> | |
| <Link href="/">الرجوع للرئيسية</Link> | |
| </Button> | |
| </CardContent> | |
| </Card> | |
| </main> | |
| ); | |
| } | |