Skip to content

Commit

Permalink
feat(saas): Added Maintenance page (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
alifarooq9 authored May 9, 2024
2 parents 958a012 + ddcd883 commit b1ee0df
Showing 1 changed file with 15 additions and 1 deletion.
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>
);
}

0 comments on commit b1ee0df

Please sign in to comment.