import { Button } from "@/components/ui/button"; import { Card, CardHeader, CardTitle } from "@/components/ui/card"; import { SiX, SiGithub, SiMastodon } from "@icons-pack/react-simple-icons"; import { Coffee } from "lucide-react"; import { useTranslation } from "@/utils/translation"; import team from "@/data/team"; export default function Team() { const { t, lang } = useTranslation(); return (

{t("team.title")}

{team.map(member => (
{member.name[lang]}
{member.name[lang]}

{member.stack[lang]}

{member.socials.twitter && ( )} {member.socials.github && ( )} {member.socials.mastodon && ( )} {member.socials.donate && ( )}
))}
) }