diff --git a/components/auth/LoginForm.tsx b/components/auth/LoginForm.tsx index 2c657f9..e8500a8 100644 --- a/components/auth/LoginForm.tsx +++ b/components/auth/LoginForm.tsx @@ -89,6 +89,10 @@ export function LoginForm({ onSignUp, onForgotPassword }: Props) { await signIn.social({ provider: 'google', callbackURL: window.location.origin, errorCallbackURL: window.location.origin }); } + async function handleApple() { + await signIn.social({ provider: 'apple', callbackURL: window.location.origin, errorCallbackURL: window.location.origin }); + } + function scrollToAbout() { aboutRef.current?.scrollIntoView({ behavior: 'smooth' }); } @@ -204,6 +208,17 @@ export function LoginForm({ onSignUp, onForgotPassword }: Props) { Sign in with Google + +