interface SectionEyebrowProps { children: React.ReactNode; accent?: "blue" | "green"; } export default function SectionEyebrow({ children, accent = "blue", }: SectionEyebrowProps) { const dot = accent === "green" ? "bg-green-400" : "bg-blue-400"; return (
{children}
); }