Files
formbricks/apps/formbricks-com/pages/404.tsx
T
Matti Nannt 60f7103198 Revert & gradually use updated files (#280)
* revert to last working version

* add updated ui components

* update formbricks-com components

* apply prettier formatting

* update apps/web files
2023-05-10 00:20:43 +02:00

15 lines
409 B
TypeScript

// 404.js
import { Button } from "@formbricks/ui";
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>
);
}