import React from "react"; import Link from "next/link"; import { useI18n } from "locales/client"; import { cn } from "@/shared/lib/utils"; import { paths } from "@/shared/constants/paths"; import { Alert, AlertDescription } from "@/components/ui/alert"; interface LocalAlertProps { className?: string; } export const LocalAlert = ({ className }: LocalAlertProps) => { const t = useI18n(); return ( {t("profile.alert.title")}
{t("profile.alert.create_account")} {t("commons.or").toLocaleLowerCase()} {t("profile.alert.log_in")} {t("profile.alert.to_ensure_it_is_not_getting_lost")}
); };