♻️ Switch to turborepo (#532)

This commit is contained in:
Luke Vella 2023-03-01 14:10:06 +00:00 committed by GitHub
parent 41ef81aa75
commit 0a836aeec7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
419 changed files with 2300 additions and 2504 deletions

View file

@ -0,0 +1,26 @@
import Head from "next/head";
import Clock from "@/components/icons/clock.svg";
import Logo from "~/public/logo.svg";
const Maintenance: React.FunctionComponent = () => {
return (
<div className="flex h-full flex-col items-center justify-center bg-gray-100">
<Head>
<title>Down for maintenance - Be right back</title>
</Head>
<div className="w-96 rounded-lg border bg-white p-8 text-center shadow-sm">
<div className="mb-4">
<Clock className="text-primary-500 inline-block h-20" />
</div>
<div className="">
The site is currently down for some maintenance and will be back
shortly
</div>
</div>
<Logo className="mt-8 inline-block h-8 text-slate-300" />
</div>
);
};
export default Maintenance;