Authentication updates

This commit is contained in:
Jack Mechem 2026-03-28 16:01:45 -07:00
parent 98b1daa7d3
commit 3015c98246
15 changed files with 657 additions and 165 deletions

9
app/loading.tsx Normal file
View file

@ -0,0 +1,9 @@
"use client";
export default function Loading() {
return (
<main className="min-h-screen bg-gray-100 flex items-center justify-center">
<div className="w-6 h-6 border-2 border-blue-400 border-t-transparent rounded-full animate-spin" />
</main>
);
}