Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(saas): Added Maintenance page #27

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion starterkits/saas/src/app/maintenance/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
import { siteConfig } from "@/config/site";

export default function Maintenance() {
return <div>Maintenance</div>;
return (
<main className="container flex min-h-screen w-screen flex-col items-center justify-center space-y-2">
<p className="fixed text-[15vw] font-bold opacity-5">Maintenance</p>

<h1 className="text-center text-3xl font-bold sm:text-5xl">
{siteConfig.name} is currently undergoing maintenance.
</h1>
<p className="text-center text-base text-muted-foreground sm:text-lg">
We&apos;re working hard to get everything back up and running.
In the meantime, you can check back later.
</p>
</main>
);
}
Loading