"use client"; import { Icon } from "@iconify/react"; import { useLocale } from "next-intl"; import { Badge } from "poyraz-ui/atoms"; import type { TechnologyStackItem } from "@/data/technology-stack"; import { getLocalizedValue } from "@/lib/locale"; export function TechnologyBadge({ technology, }: { technology: TechnologyStackItem; }) { const locale = useLocale(); return ( ); }