refactor(ui): unify low-level controls and expand design system
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m57s

This commit is contained in:
2026-03-03 15:50:15 +01:00
parent 9a43980412
commit db7a0cef96
47 changed files with 1404 additions and 711 deletions

View File

@@ -1,6 +1,6 @@
import Link from 'next/link';
import { auth } from '@/lib/auth';
import { RocketIcon } from '@/components/ui';
import { RocketIcon, getButtonClassName } from '@/components/ui';
import { ThemeToggle } from './ThemeToggle';
import { UserMenu } from './UserMenu';
import { WorkshopsDropdown } from './WorkshopsDropdown';
@@ -36,7 +36,7 @@ export async function Header() {
) : (
<Link
href="/login"
className="flex h-9 items-center rounded-lg bg-primary px-4 text-sm font-medium text-primary-foreground transition-colors hover:bg-primary-hover"
className={getButtonClassName({ size: 'sm' })}
>
Connexion
</Link>