mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 13:49:54 -06:00
15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
// 404.js
|
|
import { Button } from "@formbricks/ui/Button";
|
|
|
|
export default function FourOhFour() {
|
|
return (
|
|
<div className="flex h-screen flex-col items-center justify-center">
|
|
<h1 className="text-8xl font-bold text-slate-300">404</h1>
|
|
<h1 className="mb-8 text-xl text-slate-300">Page Not Found</h1>
|
|
<Button href="/" variant="highlight">
|
|
Go back home
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|