"use client" import {signInAction} from "@/features/auth/auth.action"; import {Button} from "@/components/ui/button"; import Image from "next/image"; import {env} from "@/env.mjs"; export type SocialAuthButtonProps = {} export const SocialAuthButton = (props: SocialAuthButtonProps) => { return (
{env.NEXT_PUBLIC_GOOGLE_AUTH === "true" ? :null}
) }