-
Notifications
You must be signed in to change notification settings - Fork 3
feat: 랜딩 페이지 구현 (#1) #3
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
Show all changes
20 commits
Select commit
Hold shift + click to select a range
8ca3b4b
chore: Prettier 설정 및 검사 스크립트 적용 (#1)
wjswlgh96 6812f8a
chore: 에이전트 개인 파일 gitignore 추가 (#1)
wjswlgh96 56d75ee
chore: 애니메이션 라이브러리 motion 추가 (#1)
wjswlgh96 75062f7
refactor: FSD 구조 도입 및 shared 레이어 이동 (#1)
wjswlgh96 a18eafd
feat: 브랜드 디자인 토큰 및 랜딩 views 골격 추가 (#1)
wjswlgh96 ea9b94e
chore: ESLint 코드 품질 및 FSD 경계 규칙 적용 (#1)
wjswlgh96 aeda616
design: 브랜드 보조 버튼 토큰 추가 (#1)
wjswlgh96 26cc1a2
feat: 공용 motion 애니메이션 상수 추가 (#1)
wjswlgh96 3500e3a
feat: 랜딩 페이지 위젯 및 애니메이션 구현 (#1)
wjswlgh96 d1cafb3
chore: 로컬 도구 설정 gitignore 추가 (#1)
wjswlgh96 8a15132
rename: 랜딩 위젯을 widgets/landing 그룹 폴더로 이동 (#1)
wjswlgh96 f42153b
design: Tailwind 프리셋 치환 및 모바일 레이아웃 Figma 정합 수정 (#1)
wjswlgh96 c4b77d7
design: 모바일 기능 카드 콘텐츠 중앙 정렬 (#1)
wjswlgh96 0d28ab5
design: Tailwind v4 gradient 네이밍 마이그레이션 및 푸터 연도 동적화 (#1)
wjswlgh96 91144f3
docs: README 스크립트 표 및 프로젝트 구조 갱신 (#1)
wjswlgh96 1a2ef65
design: 랜딩 페이지 신규 디자인 반영 (#1)
wjswlgh96 221ec76
design: 랜딩 페이지 디자인 보정 (#1)
wjswlgh96 09fc21e
fix: 캐러셀 탭 복귀 안정성·엣지 페이드 및 CodeRabbit 리뷰 반영 (#1)
wjswlgh96 052bffc
fix: 헤더 z-index 및 기능 캐러셀 full-bleed 정렬 수정 (#1)
wjswlgh96 e622131
feat: 기능 캐러셀 수동 일시정지 버튼 추가 (WCAG 2.2.2) (#1)
wjswlgh96 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,3 +39,8 @@ yarn-error.log* | |
| # typescript | ||
| *.tsbuildinfo | ||
| next-env.d.ts | ||
|
|
||
| # agent files (개인 작업용) | ||
| AGENTS.md | ||
| .agents/ | ||
| .claude/ | ||
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 |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| node_modules | ||
| .next | ||
| out | ||
| build | ||
| coverage | ||
| public | ||
| package-lock.json | ||
| node_modules | ||
| .next | ||
| out | ||
| build | ||
| coverage | ||
| public | ||
| package-lock.json | ||
| next-env.d.ts |
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 |
|---|---|---|
| @@ -1,3 +1,10 @@ | ||
| { | ||
| "plugins": ["prettier-plugin-tailwindcss"] | ||
| } | ||
| { | ||
| "semi": true, | ||
| "singleQuote": true, | ||
| "trailingComma": "all", | ||
| "printWidth": 100, | ||
| "tabWidth": 2, | ||
| "arrowParens": "always", | ||
| "endOfLine": "lf", | ||
| "plugins": ["prettier-plugin-tailwindcss"] | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.