feat: Add pages/components for authenticated flow

This commit is contained in:
Bart van der Braak 2023-06-08 00:39:28 +02:00
parent 130a4932e6
commit 6c4b88cff7
7 changed files with 478 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import { Loading as Spinner } from "@/components/loading";
export default function Loading() {
return (
<div className="flex items-center justify-center w-full h-screen">
<Spinner className="text-white" />
</div>
);
}