'use client'; import React from 'react'; import { Stack } from '@/ui/Stack'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Box } from '@/ui/Box'; interface AdminSectionHeaderProps { title: string; description?: string; actions?: React.ReactNode; } /** * AdminSectionHeader * * Semantic header for sections within admin pages. * Follows "Precision Racing Minimal" theme: dense, clear hierarchy. */ export function AdminSectionHeader({ title, description, actions }: AdminSectionHeaderProps) { return ( {title} {description && ( {description} )} {actions && ( {actions} )} ); }