fix: UI 통일성 작업 (UI Uniform)#44
Merged
Merged
Conversation
update global files for uniformize ui style
update card, button component and delete unused component, SectionCard
update onboarding page and profile edit page
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
fix: UI 통일성 작업 (UI Uniform)
개요
여러 AI를 혼용하면서 생긴 색상 혼재, 중복 컴포넌트, 스타일 불일치 문제를 해결했습니다.
겉으로 보이는 UI 변화보다는 코드 내부의 일관성 확보에 집중한 작업입니다.
주요 변경사항
🎨 디자인 토큰 시스템 구축
tailwind.config.js에 color / typography / shadow / radius 토큰 정의text-gray-*,text-zinc-*하드코딩 →text-label,text-label-sub,text-label-muted토큰으로 교체bg-white,bg-gray-*→bg-surface,bg-surface-raisedborder-gray-*,border-zinc-*→border-border,border-dark-borderdark:text-white,dark:text-zinc-100→dark:text-label-invert🧩 컴포넌트 정리
SectionCard.tsx삭제 →Card.tsx로 통일Card에variantprop 추가 (default / raised / flat / ghost)Button에loadingprop 추가📄 리팩토링된 파일 (21개)
tailwind.config.js,app/globals.css,app/layout.tsxcomponents/Navbar.tsxcomponents/EntryCard.tsxcomponents/ui/Card.tsx,Button.tsxcomponents/ui/SectionCard.tsx(삭제)components/books/BookDetailContent.tsx,BookList.tsxcomponents/comments/CommentBottomSheet.tsxcomponents/profile/ProfileHeader.tsx,ProfileStats.tsx,ProfileBookshelf.tsxcomponents/dashboard/WeeklyStreakSection.tsx,TodaySummarySection.tsxcomponents/dashboard/InProgressBooksSection.tsx,SocialFeedItem.tsxapp/protected/social/_components/SocialTab.tsxapp/protected/profile/edit/page.tsxapp/onboarding/_components/OnboardingForm.tsx🔧 폼 컴포넌트 통일
profile/edit페이지의 raw<input>,<textarea>→Input,Textarea,FormGroup,FormLabel공통 컴포넌트로 교체스크린샷
다음 작업
feat/ui-facelift브랜치에서 실제 UI 개선 작업 예정