"use client"; import { FC } from "react"; import Image from "next/image"; import { useTheme } from "next-themes"; // helpers import { API_BASE_URL } from "@/helpers/common.helper"; // images import githubLightModeImage from "/public/logos/github-black.png"; import githubDarkModeImage from "/public/logos/github-dark.svg"; export type GithubOAuthButtonProps = { text: string; }; export const GithubOAuthButton: FC = (props) => { const { text } = props; // hooks const { resolvedTheme } = useTheme(); const handleSignIn = () => { window.location.assign(`${API_BASE_URL}/auth/spaces/github/`); }; return ( ); };