import { Badge } from "@/shared/ui/badge"; export function SectionHeader({ label, title, text }: { label: string; title: string; text: string }) { return (
{label}

{title}

{text}

); }