Files
cms-template/app/(app)/post/[slug]/not-found.tsx
T
2026-08-31 19:55:41 +02:00

15 lines
290 B
TypeScript

import Link from 'next/link';
export default function Page() {
return (
<div className="min-h-screen flex flex-col justify-center items-center">
<p>Post nicht gefunden</p>
<Link
className="border border-1 border-primary"
href="/"
>
Zurück
</Link>
</div>
);
}