diff --git a/src/components/ui/dialog.tsx b/src/components/ui/dialog.tsx index d7f7f2e..1fd64f1 100644 --- a/src/components/ui/dialog.tsx +++ b/src/components/ui/dialog.tsx @@ -19,7 +19,7 @@ const DialogOverlay = React.forwardRef< ref={ref} className={cn( "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80 data-[state=closed]:animate-out data-[state=open]:animate-in", - className, + className )} {...props} /> @@ -36,7 +36,7 @@ const DialogContent = React.forwardRef< ref={ref} className={cn( "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom fixed top-[50%] left-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=closed]:animate-out data-[state=open]:animate-in sm:rounded-lg", - className, + className )} {...props} > @@ -57,7 +57,7 @@ const DialogHeader = ({
@@ -71,7 +71,7 @@ const DialogFooter = ({ @@ -86,7 +86,7 @@ const DialogTitle = React.forwardRef< ref={ref} className={cn( "font-semibold text-lg leading-none tracking-tight", - className, + className )} {...props} /> diff --git a/src/index.css b/src/index.css index adf0979..5d62a63 100644 --- a/src/index.css +++ b/src/index.css @@ -1,6 +1,6 @@ @import "tailwindcss"; -@plugin 'tailwindcss-animate'; +@plugin "tailwindcss-animate"; @custom-variant dark (&:is(.dark *)); diff --git a/src/pages/LoginPage.tsx b/src/pages/LoginPage.tsx index dc98b98..95be1e2 100644 --- a/src/pages/LoginPage.tsx +++ b/src/pages/LoginPage.tsx @@ -4,6 +4,10 @@ import { useExternalBrowser } from "@/hooks/useExternalBrowser"; import { Analytics } from "@/service/analytics"; import BrowserRedirectPage from "./BrowserRedirectPage"; +const GOOGLE_LOGIN_URL = `${import.meta.env.VITE_API_URL}/oauth2/authorization/google`; +const AEGIS_HOMEPAGE_URL = "https://homepage.dkuaegis.org/"; +const GMAIL_GUIDE_URL = "https://sites.google.com/dankook.ac.kr/help"; + const LoginPage = () => { const { isKakaoInApp } = useExternalBrowser(); @@ -37,11 +41,7 @@ const LoginPage = () => { className="w-full" asChild > - - Google로 로그인 - + Google로 로그인