"use client"; import { Icon } from "@iconify/react"; import { useLocale, useTranslations } from "next-intl"; import { Badge, Typography } from "poyraz-ui/atoms"; import { TECHNOLOGY_STACK } from "@/data/technology-stack"; import { getLocalizedValue } from "@/lib/locale"; export function HomeTechnologyStack() { const t = useTranslations("Home"); const locale = useLocale(); return (
{t("technologiesTitle")}
{TECHNOLOGY_STACK.map((group) => (
{t(`technologyCategories.${group.id}`)}
{group.items.map((technology) => ( ))}
))}
); }