"use client"; import { useTranslations } from "next-intl"; import { Card, Typography } from "poyraz-ui/atoms"; import { TechnologyBadge } from "@/components/technology-badge"; import { TECHNOLOGY_STACK } from "@/data/technology-stack"; export function TechnologiesContent() { const t = useTranslations("Technologies"); return (
{t("title")} {t("description")}
{TECHNOLOGY_STACK.map((group) => ( {t(`categories.${group.id}`)}
{group.items.map((technology) => ( ))}
))}
); }