-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from SystemConsultantGroup/feat/42-loginPage
[FEAT] 로그인 페이지 구현 및 로그인 박스 수정
- Loading branch information
Showing
5 changed files
with
20 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
// src/app/(user)/(auth)/login/page.tsx | ||
import React from "react"; | ||
import LoginPage from "@/components/pages/loginPage/loginPage"; | ||
import { LoginBox } from "@/components/common/LoginBox/LoginBox"; | ||
import styles from "./loginPage.module.css"; | ||
|
||
export default function Page() { | ||
return <LoginPage />; | ||
export default function LoginPage() { | ||
return ( | ||
<div className={styles.pageContainer}> | ||
<div className={styles.loginContainer}> | ||
<LoginBox /> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.