Files
portabase/app/not-found.tsx
T

23 lines
709 B
TypeScript
Raw Normal View History

2026-06-27 17:08:38 +02:00
import Link from "next/link";
import { Button } from "@/components/ui/button";
2025-01-01 20:00:11 +01:00
2025-02-13 19:20:55 +01:00
export default async function NotFound() {
2026-02-26 15:29:00 +01:00
return (
<div className="flex items-center min-h-screen px-4 py-12 sm:px-6 md:px-8 lg:px-12 xl:px-16">
<div className="w-full space-y-6 text-center">
<div className="space-y-3">
<h1 className="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl">
Not found
</h1>
<p className="leading-7 not-first:mt-6">
The content you are trying to view is not available.
</p>
2025-07-28 16:53:21 +02:00
</div>
2026-06-27 17:08:38 +02:00
<Button asChild>
<Link href="/">Go home</Link>
</Button>
2026-02-26 15:29:00 +01:00
</div>
</div>
);
2025-05-16 15:54:17 +02:00
}