From 710db0a99190b1b86f29896da743a9315bd523b3 Mon Sep 17 00:00:00 2001
From: SomeCodecat <88855796+SomeCodecat@users.noreply.github.com>
Date: Tue, 6 May 2025 11:37:30 +0200
Subject: [PATCH] feat: trying to add normal login button
---
src/app/login/page.tsx | 6 +++++-
src/components/user/login-button.tsx | 11 +++++++++++
src/components/user/sso-login-button.tsx | 2 +-
3 files changed, 17 insertions(+), 2 deletions(-)
create mode 100644 src/components/user/login-button.tsx
diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx
index 5e54a9f..27fc99c 100644
--- a/src/app/login/page.tsx
+++ b/src/app/login/page.tsx
@@ -7,6 +7,8 @@ import { redirect } from 'next/navigation';
import style from './login.module.css';
import '@/app/globals.css';
+import SSOLogin from '@/components/user/sso-login-button';
+import Login from '@/components/user/login-button';
export default async function LoginPage() {
const session = await auth();
@@ -32,9 +34,11 @@ export default async function LoginPage() {
/>
+