Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
3df6b13
chore: 로고 및 아이콘 이미지 파일 추가
suuuuya Sep 17, 2025
9b70ff0
chore: 파비콘 및 OG 이미지 메타태그 추가
suuuuya Sep 17, 2025
6c653cf
chore: 프로젝트 초기 세팅(패키지 설치) 및 기본 컴포넌트 파일 생성
suuuuya Sep 17, 2025
147e7d0
feat: 글로벌 스타일 및 폰트 추가
suuuuya Sep 17, 2025
046f7c2
feat: 헤더/아이콘 컴포넌트 구현 및 글로벌 스타일, 테마 분리
suuuuya Sep 18, 2025
5993049
feat: 버튼 컴포넌트 구현
suuuuya Sep 18, 2025
dac2ccf
feat: 카드(상품) 컴포넌트 구현
suuuuya Sep 18, 2025
3d7d223
feat: 페이지네이션 컴포넌트 구현
suuuuya Sep 19, 2025
a16d22e
feat: 드롭다운 컴포넌트 구현 및 useToggle 커스텀 훅 분리
suuuuya Sep 19, 2025
d0f2b4a
feat: 텍스트필드(인풋,검색필드) 컴포넌트 구현
suuuuya Sep 19, 2025
d0b7adc
feat: 컨테이너 컴포넌트 구현 및 페이지 별 일괄 적용
suuuuya Sep 19, 2025
d3e4115
feat: 중고마켓 페이지 구현(베스트 상품, 전체 상품 섹션 분류 및 반응형 스타일 적용)
suuuuya Sep 20, 2025
db4bd3b
refactor: 드롭다운 외부 클릭 로직 useClickOutside 훅으로 분리 및 드롭다운 애니메이션 추가
suuuuya Sep 20, 2025
fc6646a
chore: 상위 폴더 node_modules 및 패키지 삭제
suuuuya Sep 20, 2025
ef215ae
feat: 전체 상품 영역 API 연동 및 반응형 상품 노출 개수 구현(해당 페이지 연결 useResponsiveView 훅…
suuuuya Sep 20, 2025
deb3e32
feat: 베스트 상품 영역 API 연동 및 반응형 상품 노출 개수 구현(카드 컴포넌트 스타일 수정)
suuuuya Sep 20, 2025
f7ed4ff
feat: usePageTitle 훅 및 페이지 컴포넌트 추가로 페이지별 타이틀 관리 구현
suuuuya Sep 20, 2025
f597282
fix: max-width 조건부 수정
suuuuya Sep 20, 2025
2213623
feat: dist 폴더 생성
suuuuya Sep 20, 2025
5bc581b
feat: 전체 상품 정렬 옵션 변경 시 페이지네이션 초기화 기능 구현
suuuuya Sep 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vite-project/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_BASE_URL="https://panda-market-api.vercel.app/"
34 changes: 17 additions & 17 deletions vite-project/eslint.config.js
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 }],
},
},
]
];
18 changes: 15 additions & 3 deletions vite-project/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<meta name="description" content="일상의 모든 물건을 거래해보세요" />
<title>판다마켓</title>
<!-- OG -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="판다마켓" />
<meta property="og:title" content="판다마켓" />
<meta property="og:description" content="일상의 모든 물건을 거래해보세요" />
<meta property="og:image" content="/og-img.png" />
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png" />
Comment on lines +10 to +19
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

크으 ~ 메타 태그까지 빠트리지 않고 꼼꼼하시군요 ! 👍

</head>
<body>
<div id="root"></div>
Expand Down
Loading
Loading