mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 05:17:49 -05:00
ab80bc1bf2
Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
22 lines
717 B
TypeScript
22 lines
717 B
TypeScript
import Link from "next/link";
|
||
import { Button } from "@formbricks/ui/Button";
|
||
|
||
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">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">
|
||
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;
|