-
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.
- Loading branch information
Showing
18 changed files
with
16,295 additions
and
6,849 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Feed() { | ||
return ( | ||
<> | ||
<div>Feed</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Loading() { | ||
return ( | ||
<> | ||
<div>Loading</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function MyPage() { | ||
return ( | ||
<> | ||
<div>MyPage</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,40 @@ | ||
import CloseIcon from "@mui/icons-material/Close"; | ||
import "../style/register.scss"; | ||
|
||
export default function Register() { | ||
return ( | ||
<> | ||
<div>Register</div> | ||
</> | ||
<div id="container"> | ||
<div id="x-div"> | ||
<CloseIcon id="x" /> | ||
</div> | ||
<hr /> | ||
<section id="main"> | ||
<p>회원가입</p> | ||
<form> | ||
{/* 이메일 👉🏻 이메일 형식 유효성 검사*/} | ||
<label htmlFor="email">이메일</label> | ||
<div> | ||
<input type="email" id="email" /> | ||
<button id="btn_verify">인증</button> | ||
</div> | ||
{/* 이름*/} | ||
<label htmlFor="name">이름</label> | ||
<input type="text" id="name" /> | ||
{/* 닉네임 👉🏻 중복검사*/} | ||
<label htmlFor="nickname">닉네임</label> | ||
<input type="text" id="nickname" /> | ||
{/* 비밀번호 👉🏻 중복검사 & 유효성 검사*/} | ||
<label htmlFor="password">비밀번호</label> | ||
<input | ||
type="password" | ||
id="password" | ||
placeholder="비밀번호(8~20자 영문, 숫자, 특수기호 조합)" | ||
/> | ||
<input type="password" id="re-password" placeholder="비밀번호 확인" /> | ||
<button id="btn_register">옷늘 캐스터 등록</button> | ||
</form> | ||
</section> | ||
<footer></footer> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Upload() { | ||
return ( | ||
<> | ||
<div>Upload</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom/client'; | ||
import './index.css'; | ||
import App from './App'; | ||
import reportWebVitals from './reportWebVitals'; | ||
import React from "react"; | ||
import ReactDOM from "react-dom/client"; | ||
import "./index.css"; | ||
import App from "./App"; | ||
|
||
const root = ReactDOM.createRoot( | ||
document.getElementById('root') as HTMLElement | ||
document.getElementById("root") as HTMLElement, | ||
); | ||
root.render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode> | ||
</React.StrictMode>, | ||
); | ||
|
||
// If you want to start measuring performance in your app, pass a function | ||
// to log results (for example: reportWebVitals(console.log)) | ||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals | ||
reportWebVitals(); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,2 +1,18 @@ | ||
$color-main: #a8bbff; | ||
$color-sub: #d0dbff; | ||
$color-register: #7995f9; | ||
|
||
@mixin x-icon($width, $height) { | ||
color: $color-main; | ||
width: $width; | ||
height: $height; | ||
} | ||
|
||
@mixin register($size) { | ||
color: $color-register; | ||
text-align: center; | ||
font-size: $size; | ||
font-weight: 800; | ||
line-height: normal; | ||
letter-spacing: 3px; | ||
} |
Oops, something went wrong.