mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 00:49:42 -06:00
22 lines
766 B
TypeScript
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't find the page you're looking for.
|
|
</p>
|
|
<Link href={"/"}>
|
|
<Button className="mt-8">Back to home</Button>
|
|
</Link>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NotFound;
|