import { useState } from 'react' import { Button } from '~/components/ui/button' import { Spinner } from '~/components/ui/spinner' import { authClient } from '~/server/better-auth/client' function GoogleIcon() { return ( ) } export function GoogleButton({ label, callbackURL = '/', }: { label: string callbackURL?: string }) { const [loading, setLoading] = useState(false) return ( ) } export function AuthDivider() { return (