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

@ -14,6 +14,7 @@ import {
import Link from "next/link";
import { usePathname } from "next/navigation";
import { useAuth } from "@/components/auth";
import { BrandLogo } from "@/components/brand/brand-logo";
const navigation = [
{ href: "/dashboard", label: "Dashboard", icon: LayoutDashboard },
@ -34,8 +35,7 @@ export function AppShell({ children }: { children: React.ReactNode }) {
<div className="min-h-screen bg-background text-text">
<aside className="fixed inset-y-0 left-0 z-30 hidden w-72 border-r border-border bg-surface px-5 py-6 lg:block">
<div className="mb-8">
<div className="text-xl font-semibold text-primary-dark">Validation Suite</div>
<div className="mt-1 text-sm text-text-light">Atlas Workspace</div>
<BrandLogo compact />
</div>
<nav className="space-y-1">
{navigation.map((item, index) => {