diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 40e4ec69..cf6479bb 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,18 +1,6 @@ 'use client'; import { useState } from 'react'; -import Link from 'next/link'; -import LoginForm from '../../components/LoginForm'; - -import { - GlobalStyle, - Fullscreen, - Img, - LoginBox, - LoginContent, - WelcomeSign, - Button, -} from './styles'; import { handleSignUp, @@ -20,27 +8,7 @@ import { signOut, } from '../../api/supabase/auth/auth'; -export default function App() { - return ( -
- - - - - - Welcome - - - - - -
- ); -} - -export function Login() { +export default function Login() { const [email, setEmail] = useState(''); const [password, setPassword] = useState('');