mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-07 19:30:07 -05:00
016dc3d92a
Co-authored-by: TheodorTomas <theodortomas@gmail.com> Co-authored-by: Johannes <johannes@formbricks.com>
15 lines
426 B
TypeScript
15 lines
426 B
TypeScript
import Link from "next/link";
|
|
import { getTranslate } from "@/lingodotdev/server";
|
|
import { Button } from "@/modules/ui/components/button";
|
|
|
|
export const BackToLoginButton = async () => {
|
|
const t = await getTranslate();
|
|
return (
|
|
<Button variant="default" className="w-full justify-center">
|
|
<Link href="/auth/login" className="h-full w-full">
|
|
{t("auth.signup.log_in")}
|
|
</Link>
|
|
</Button>
|
|
);
|
|
};
|