import React from "react" import { FolderOpen } from "lucide-react" import { cn } from "@/lib/utils" interface SectionBadgeProps { section: string className?: string } export const SectionBadge: React.FC = ({ section, className }) => { return ( ) }