style(orion): align report header footer and page layout

This commit is contained in:
Schubert Ferenc 2026-07-11 12:19:10 +02:00
parent 302e542fda
commit 503b343070
40 changed files with 2010 additions and 148 deletions

View 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>
);
}