"use client"; import { Button } from "@formbricks/ui"; import { signIn } from "next-auth/react"; import { FaGithub } from "react-icons/fa"; export const GithubButton = ({ text = "Continue with Github" }) => { const handleLogin = async () => { await signIn("github", { redirect: true, callbackUrl: "/", // redirect after login to / }); }; return ( ); };