Files
formbricks/apps/web/app/not-found.tsx
2025-05-09 10:09:09 +02:00

22 lines
766 B
TypeScript

import { Button } from "@/modules/ui/components/button";
import Link from "next/link";
const NotFound = () => {
return (
<div className="mx-auto flex h-full max-w-xl flex-col items-center justify-center py-16 text-center">
<p className="text-sm font-semibold text-zinc-900 dark:text-white" data-testid="error-code">
404
</p>
<h1 className="mt-2 text-2xl font-bold text-zinc-900 dark:text-white">Page not found</h1>
<p className="mt-2 text-base text-zinc-600 dark:text-zinc-400" data-testid="error-message">
Sorry, we couldn&apos;t find the page you&apos;re looking for.
</p>
<Link href={"/"}>
<Button className="mt-8">Back to home</Button>
</Link>
</div>
);
};
export default NotFound;