style(orion): align report header footer and page layout
This commit is contained in:
parent
302e542fda
commit
503b343070
40 changed files with 2010 additions and 148 deletions
15
validation-suite/frontend/atlas/app/loading.tsx
Normal file
15
validation-suite/frontend/atlas/app/loading.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { BrandLogo } from "@/components/brand/brand-logo";
|
||||
|
||||
export default function Loading() {
|
||||
return (
|
||||
<main className="flex min-h-screen items-center justify-center bg-background">
|
||||
<div className="rounded-lg border border-border bg-surface p-8 shadow-soft">
|
||||
<BrandLogo />
|
||||
<div className="mt-6 flex items-center justify-center gap-3 text-text-light">
|
||||
<span className="spinner" />
|
||||
<span>Validation Suite wird geladen.</span>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue