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

@ -6,6 +6,7 @@ import { useRouter } from "next/navigation";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { AuthProvider, useAuth } from "@/components/auth";
import { BrandLogo } from "@/components/brand/brand-logo";
import { login } from "@/lib/api";
const schema = z.object({
@ -33,7 +34,7 @@ function LoginPanel() {
<main className="flex min-h-screen items-center justify-center bg-background px-4 py-10">
<section className="w-full max-w-md rounded-lg border border-border bg-surface p-8 shadow-soft">
<div className="mb-8">
<p className="text-sm font-medium text-primary">Validation Suite</p>
<BrandLogo />
<h1 className="mt-2 text-3xl font-semibold text-text">Anmelden</h1>
<p className="mt-3 text-sm leading-6 text-text-light">Sicherer Zugriff auf Atlas Workspace.</p>
</div>