"use client" import { Shield, Zap, Globe } from "lucide-react" import { useTranslations } from "next-intl" export function AboutContent() { const t = useTranslations("about") return (

{t("title")}

{t("subtitle")}

{t("features.privacy.title")}

{t("features.privacy.description")}

{t("features.speed.title")}

{t("features.speed.description")}

{t("features.openSource.title")}

{t("features.openSource.description")}

{t("mission.title")}

{t("mission.content")}

{t("techStack.title")}

{t("techStack.content")}

{t("contact.title")}

{t("contact.intro")}{" "} {t("contact.github")} {t("contact.joinText")}{" "} {t("contact.telegram")} {" "}{t("contact.outro")}

) }