mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-30 03:33:48 -05:00
9f6c40fd42
* Moved billing page to RSC * removed unused props * ran pnpm format * fix build error * add 404 page, throw 404 on billing page when !IS_FORMBRICKS_CLOUD --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
19 lines
650 B
TypeScript
19 lines
650 B
TypeScript
import { Button } from "@formbricks/ui";
|
||
|
||
export default function 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>
|
||
<Button href="/" className="mt-8">
|
||
Back to home
|
||
</Button>
|
||
</div>
|
||
</>
|
||
);
|
||
}
|