-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(saas): Added Maintenance page (#27)
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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're working hard to get everything back up and running. | ||
In the meantime, you can check back later. | ||
</p> | ||
</main> | ||
); | ||
} |