mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 21:20:57 +00:00
15 lines
508 B
TypeScript
15 lines
508 B
TypeScript
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;
|