import { LoginForm } from "@/features/auth/components/login-form";
import { Helmet } from "react-helmet-async";
import { getAppName } from "@/lib/config.ts";
import { useTranslation } from "react-i18next";
export default function LoginPage() {
const { t } = useTranslation();
return (
<>
{t("Login")} - {getAppName()}
>
);
}