feat(freight:backoffice): added login page and basic authorization

This commit is contained in:
Michael Abebe
2026-05-22 17:55:20 +03:00
parent 2c9ca6f16b
commit 27e2cfcf6b
18 changed files with 918 additions and 227 deletions

View File

@@ -0,0 +1,14 @@
const LoadingScreen = () => {
return (
<div className="flex min-h-screen items-center justify-center bg-background px-6">
<div className="rounded-2xl border border-border bg-card px-8 py-6 text-center shadow-sm">
<p className="text-sm font-medium uppercase tracking-[0.2em] text-muted-foreground">
EDR Freight Backoffice
</p>
<p className="mt-3 text-lg font-semibold text-foreground">Loading...</p>
</div>
</div>
);
};
export default LoadingScreen;