-
Notifications
You must be signed in to change notification settings - Fork 2
✨ Feat: 마이페이지 UI 작업 #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,95 @@ | ||
| 'use client' | ||
|
|
||
| import Image from 'next/image' | ||
|
|
||
| import Header from '@/app/shared/components/common/header/Header' | ||
| import Sidebar from '@/app/shared/components/common/sidebar/Sidebar' | ||
|
|
||
| import Input from '../shared/components/Input' | ||
|
|
||
| export default function Mypage() { | ||
| return ( | ||
| <> | ||
| <Header /> | ||
| <div className="BG-gray h-full"> | ||
| {/* 사이드바 */} | ||
| <Sidebar /> | ||
| {/* 메인 콘텐츠 영역 */} | ||
| <div className="ml-300 p-20 tablet:ml-67"> | ||
| {/* 헤더 영역 */} | ||
| <div className="flex flex-col gap-16"> | ||
| <div className="flex items-center justify-start gap-8"> | ||
| {/* 사진으로 대체 예정 */} | ||
| <svg | ||
| width={20} | ||
| height={20} | ||
| viewBox="0 0 24 24" | ||
| fill="none" | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| > | ||
| <path | ||
| d="M15 18L9 12L15 6" | ||
| stroke="currentColor" | ||
| strokeWidth="2" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| /> | ||
| </svg> | ||
| <button className="text-xm self-start">돌아가기</button> | ||
| </div> | ||
Insung-Jo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| {/* 닉네임 프로필 변경 */} | ||
| <div className="BG-white flex h-auto w-full max-w-672 flex-col gap-24 rounded-8 p-24 font-medium"> | ||
| <h2 className="text-2xl font-bold">테스트</h2> | ||
| <form className="flex justify-between gap-42 tablet:flex-col"> | ||
| <div className="BG-gray relative flex size-182 basis-182 cursor-pointer items-center justify-center overflow-hidden rounded-lg"> | ||
| <svg | ||
| width="24" | ||
| height="24" | ||
| viewBox="0 0 18 18" | ||
| fill="none" | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| > | ||
| <path | ||
| d="M9 3V15" | ||
| stroke="#83C8FA" | ||
| strokeWidth="3" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| /> | ||
| <path | ||
| d="M3 9H15" | ||
| stroke="#83C8FA" | ||
| strokeWidth="3" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| /> | ||
| </svg> | ||
| </div> | ||
| <input className="hidden" type="file" /> | ||
| <div className="flex flex-grow flex-col gap-16"> | ||
Insung-Jo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <Input labelName="이메일" name="email" /> | ||
| <Input labelName="비밀번호" name="password" /> | ||
| <button className="w-pull BG-blue h-50 rounded-8 text-white"> | ||
| 제출 | ||
| </button> | ||
Insung-Jo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </div> | ||
| </form> | ||
| </div> | ||
| {/* 비밀번호 변경 */} | ||
| <div className="BG-white flex h-auto w-full max-w-672 flex-col gap-24 rounded-8 p-24"> | ||
| <h2 className="text-2xl font-bold">테스트</h2> | ||
| <form className="flex flex-col justify-between gap-16"> | ||
| <Input labelName="현재 비밀번호" name="password" /> | ||
| <Input labelName="새 비밀번호" name="password" /> | ||
| <Input labelName="새 비밀번호 확인" name="password" /> | ||
Insung-Jo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <button className="w-pull BG-blue h-50 rounded-8 text-white"> | ||
| 변경 | ||
| </button> | ||
| </form> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </> | ||
| ) | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.