import { title, subtitle } from "@/components/primitives"; import { Button, Link as NextUiLink } from "@nextui-org/react"; import { ExternalLink } from "lucide-react"; import { Link } from "@/src/navigation"; import { useTranslations } from "next-intl"; type Props = { locale: string; }; export default function MainTitle({ locale }: Props) { const t = useTranslations("Index"); return (

TestPlat



{t("oss_tcmt")}
{t("web_application")}

{t("integrate_and_manage")}

); }