import { TabsTrigger } from 'fumadocs-ui/components/tabs'; // Real language logos (devicon, MIT) rendered as the code-tab triggers; kept as raw // SVG source so the multi-path gopher stays byte-accurate instead of a lucide stand-in. const LOGOS = { javascript: { label: 'JavaScript', svg: ``, }, python: { label: 'Python', svg: ``, }, go: { label: 'Go', svg: ``, }, } as const; export type LangKey = keyof typeof LOGOS; export function LangTab({ lang }: { lang: LangKey }) { const { label, svg } = LOGOS[lang]; return ( {label} ); }