aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(auth)/auth-buttons.tsx
blob: 5b0ad06e9098962f7b2be0f71c8c907251e551ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use client";

import { Button } from "@repo/ui/shadcn/button";
import React from "react";
import { signIn } from "../../server/auth";

function SignIn() {
  return (
    <Button className="mt-4" onClick={async () => await signIn("google")}>
      Login with Google
    </Button>
  );
}

export default SignIn;