diff --git a/skillswap/src/App.jsx b/skillswap/src/App.jsx index a40828d21b9bf02c28f8bb659c648f0b3ae1bf55..41f7f2c694f9ad2df5ed947fb7a73739269f7687 100644 --- a/skillswap/src/App.jsx +++ b/skillswap/src/App.jsx @@ -1,9 +1,3 @@ -import { LoginForm } from './components/login-form'; - export default function App() { - return ( - <div> - <LoginForm /> - </div> - ); + return <div></div>; } diff --git a/skillswap/src/app/login/page.jsx b/skillswap/src/app/login/page.jsx deleted file mode 100644 index 979614e89c734d8910787f3cf595da94c8f4e6d9..0000000000000000000000000000000000000000 --- a/skillswap/src/app/login/page.jsx +++ /dev/null @@ -1,12 +0,0 @@ -import { LoginForm } from "@/components/login-form" - -export default function LoginPage() { - return ( - (<div - className="flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10"> - <div className="w-full max-w-sm md:max-w-3xl"> - <LoginForm /> - </div> - </div>) - ); -} diff --git a/skillswap/src/pages/Login.jsx b/skillswap/src/pages/Login.jsx new file mode 100644 index 0000000000000000000000000000000000000000..ee4f3cff0f3232d265e1d7296e662989111d311d --- /dev/null +++ b/skillswap/src/pages/Login.jsx @@ -0,0 +1,11 @@ +import { LoginForm } from '@/components/login-form'; + +export default function LoginPage() { + return ( + <div className='flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10'> + <div className='w-full max-w-sm md:max-w-3xl'> + <LoginForm /> + </div> + </div> + ); +}