-
Notifications
You must be signed in to change notification settings - Fork 0
release: 2026.05.28 웹 배포 #325
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
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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,56 @@ | ||
| import EditClub from '@/assets/edit-club-detail.png'; | ||
| import NewClub from '@/assets/new-club.png'; | ||
| import Register from '@/assets/register-club.png'; | ||
| export default function RegisterClub() { | ||
| const registerClubCards = [ | ||
| { | ||
| image: EditClub, | ||
| imageAlt: '동아리 정보 수정', | ||
| title: '동아리 정보 수정', | ||
| description: '이미 KONECT에 등록된 동아리의 소개, 사진, 상세정보를 추가하거나 수정할 수 있어요', | ||
| target: '대상 : 동아리 회장, 임원진', | ||
| }, | ||
| { | ||
| image: NewClub, | ||
| imageAlt: '신규 동아리 등록', | ||
| title: '신규 동아리 등록', | ||
| description: '아직 KONECT에 등록되지 않은 동아리의 기본 정보와 소개 정보를 제출할 수 있어요.', | ||
| target: '대상 : 미등록된 동아리의 관계자', | ||
| }, | ||
| { | ||
| image: Register, | ||
| imageAlt: '학교 동아리 목록 등록', | ||
| title: '학교 동아리 목록 등록', | ||
| description: '총동 / 학생회 담당자가 학교 단위의 동아리 목록과 기본 정보를 한 번에 전달할 수 있어요.', | ||
| target: '대상 : 총동아리 연합회 / 학생회 담당자', | ||
| }, | ||
| ]; | ||
| return ( | ||
| <main className="flex min-h-screen flex-col items-center gap-10 py-11.5"> | ||
| <section className="flex flex-col items-center gap-5"> | ||
| <div className="bg-primary-100 border-primary-400 text-primary-500 flex h-16 w-74.25 items-center justify-center gap-2.5 rounded-[30px] border-2 px-7.5 py-3 text-[24px] leading-10 font-semibold"> | ||
| <span className="bg-primary-500 size-2 rounded-full" aria-hidden="true" /> | ||
| 동아리 정보 등록/수정 | ||
| </div> | ||
| <span className="text-text-400 text-[20px]"> | ||
| 작성자 유형에 따라 필요한 항목이 다릅니다. 현재 상황에 맞는 항목을 선택해주세요. | ||
| </span> | ||
| </section> | ||
| <section className="flex gap-5"> | ||
| {registerClubCards.map((card) => ( | ||
| <div | ||
| key={card.title} | ||
| className="border-text-100 flex h-92.75 w-82.75 flex-col items-center gap-10 rounded-[20px] border bg-[#ffffff] px-7.5 py-10" | ||
| > | ||
| <img src={card.image} alt={card.imageAlt} /> | ||
| <div className="flex flex-col items-center"> | ||
| <h2 className="text-text-700 text-[24px] font-semibold">{card.title}</h2> | ||
| <span className="text-text-600 mt-10 w-65 text-center text-[14px] leading-4">{card.description}</span> | ||
| <span className="text-text-600 pt-5 text-[14px]">{card.target}</span> | ||
| </div> | ||
| </div> | ||
| ))} | ||
| </section> | ||
|
Comment on lines
+39
to
+53
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion | 🟠 Major | 🏗️ Heavy lift 반응형 레이아웃을 추가하세요. 카드 3개가 반응형 레이아웃 예시- <section className="flex gap-5">
+ <section className="flex flex-col gap-5 md:flex-row">
{registerClubCards.map((card) => (
<div
key={card.title}
- className="border-text-100 flex h-92.75 w-82.75 flex-col items-center gap-10 rounded-[20px] border bg-[`#ffffff`] px-7.5 py-10"
+ className="border-text-100 flex w-full flex-col items-center gap-10 rounded-[20px] border bg-white px-7.5 py-10 md:h-92.75 md:w-82.75"
>🤖 Prompt for AI Agents |
||
| </main> | ||
| ); | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion | 🟠 Major | ⚡ Quick win
시맨틱 타이포그래피 유틸리티 사용을 권장합니다.
text-[24px],text-[20px],text-[14px]대신@konect/design-tokens에서 제공하는 시맨틱 유틸리티(예:text-h2,text-body1)를 사용하면 디자인 일관성과 유지보수성이 향상됩니다.가이드라인 근거: Prioritize semantic typography utilities (e.g.,
text-h1,text-body1) over generic utilitiesAlso applies to: 35-35, 47-49
🤖 Prompt for AI Agents