import less from "./Landing.module.less" import '../../../i18n' import { Button } from "../../shared/ui/button" import { Label } from "@radix-ui/react-menubar" import { useTranslation } from "react-i18next"; function Landing() { const { t } = useTranslation(); return ( <>

{t("landingLogo")}

) } export default Landing