"use client"; import { Icon } from "@iconify/react"; import { useTranslations } from "next-intl"; import { Button, ButtonIcon, ButtonLabel, Typography, } from "poyraz-ui/atoms"; import { TECHNOLOGY_STACK } from "@/data/technology-stack"; import { Link } from "@/i18n/routing"; import { TechnologyBadge } from "@/components/technology-badge"; export function HomeTechnologyStack() { const t = useTranslations("Home"); const technologies = TECHNOLOGY_STACK.flatMap((group) => group.items); return (
{t("technologiesTitle")}
{technologies.map((technology) => ( ))}
); }