-
Notifications
You must be signed in to change notification settings - Fork 26
[이연수] Sprint5 #132
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
kiJu2
merged 20 commits into
codeit-bootcamp-frontend:React-이연수
from
suuuuya:React-이연수-sprint5
Sep 22, 2025
The head ref may contain hidden characters: "React-\uC774\uC5F0\uC218-sprint5"
Merged
[이연수] Sprint5 #132
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3df6b13
chore: 로고 및 아이콘 이미지 파일 추가
suuuuya 9b70ff0
chore: 파비콘 및 OG 이미지 메타태그 추가
suuuuya 6c653cf
chore: 프로젝트 초기 세팅(패키지 설치) 및 기본 컴포넌트 파일 생성
suuuuya 147e7d0
feat: 글로벌 스타일 및 폰트 추가
suuuuya 046f7c2
feat: 헤더/아이콘 컴포넌트 구현 및 글로벌 스타일, 테마 분리
suuuuya 5993049
feat: 버튼 컴포넌트 구현
suuuuya dac2ccf
feat: 카드(상품) 컴포넌트 구현
suuuuya 3d7d223
feat: 페이지네이션 컴포넌트 구현
suuuuya a16d22e
feat: 드롭다운 컴포넌트 구현 및 useToggle 커스텀 훅 분리
suuuuya d0f2b4a
feat: 텍스트필드(인풋,검색필드) 컴포넌트 구현
suuuuya d0b7adc
feat: 컨테이너 컴포넌트 구현 및 페이지 별 일괄 적용
suuuuya d3e4115
feat: 중고마켓 페이지 구현(베스트 상품, 전체 상품 섹션 분류 및 반응형 스타일 적용)
suuuuya db4bd3b
refactor: 드롭다운 외부 클릭 로직 useClickOutside 훅으로 분리 및 드롭다운 애니메이션 추가
suuuuya fc6646a
chore: 상위 폴더 node_modules 및 패키지 삭제
suuuuya ef215ae
feat: 전체 상품 영역 API 연동 및 반응형 상품 노출 개수 구현(해당 페이지 연결 useResponsiveView 훅…
suuuuya deb3e32
feat: 베스트 상품 영역 API 연동 및 반응형 상품 노출 개수 구현(카드 컴포넌트 스타일 수정)
suuuuya f7ed4ff
feat: usePageTitle 훅 및 페이지 컴포넌트 추가로 페이지별 타이틀 관리 구현
suuuuya f597282
fix: max-width 조건부 수정
suuuuya 2213623
feat: dist 폴더 생성
suuuuya 5bc581b
feat: 전체 상품 정렬 옵션 변경 시 페이지네이션 초기화 기능 구현
suuuuya 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 @@ | ||
| VITE_BASE_URL="https://panda-market-api.vercel.app/" |
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,33 +1,33 @@ | ||
| import js from '@eslint/js' | ||
| import globals from 'globals' | ||
| import reactHooks from 'eslint-plugin-react-hooks' | ||
| import reactRefresh from 'eslint-plugin-react-refresh' | ||
| import js from "@eslint/js"; | ||
| import globals from "globals"; | ||
| import reactHooks from "eslint-plugin-react-hooks"; | ||
| import reactRefresh from "eslint-plugin-react-refresh"; | ||
|
|
||
| export default [ | ||
| { ignores: ['dist'] }, | ||
| { ignores: ["dist"] }, | ||
| { | ||
| files: ['**/*.{js,jsx}'], | ||
| files: ["**/*.{js,jsx}"], | ||
| languageOptions: { | ||
| ecmaVersion: 2020, | ||
| globals: globals.browser, | ||
| globals: { | ||
| ...globals.browser, | ||
| ...globals.node, | ||
| }, | ||
| parserOptions: { | ||
| ecmaVersion: 'latest', | ||
| ecmaVersion: "latest", | ||
| ecmaFeatures: { jsx: true }, | ||
| sourceType: 'module', | ||
| sourceType: "module", | ||
| }, | ||
| }, | ||
| plugins: { | ||
| 'react-hooks': reactHooks, | ||
| 'react-refresh': reactRefresh, | ||
| "react-hooks": reactHooks, | ||
| "react-refresh": reactRefresh, | ||
| }, | ||
| rules: { | ||
| ...js.configs.recommended.rules, | ||
| ...reactHooks.configs.recommended.rules, | ||
| 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }], | ||
| 'react-refresh/only-export-components': [ | ||
| 'warn', | ||
| { allowConstantExport: true }, | ||
| ], | ||
| "no-unused-vars": ["error", { varsIgnorePattern: "^[A-Z_]" }], | ||
| "react-refresh/only-export-components": ["warn", { allowConstantExport: true }], | ||
| }, | ||
| }, | ||
| ] | ||
| ]; |
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.
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.
크으 ~ 메타 태그까지 빠트리지 않고 꼼꼼하시군요 ! 👍