Skip to content

Repository files navigation

판다마켓

중고거래 마켓플레이스 서비스

프로젝트 구조

product/
├── components/
│   ├── ProductCard.jsx
│   ├── ProductCard.styled.js
│   ├── ProductList.jsx
│   └── ProductList.styled.js
├── hooks/
│   └── useProductList.js
├── module/
│   ├── best-product-list/
│   │   ├── BestProductList.jsx
│   │   ├── BestProductList.styled.js
│   │   └── useBestProductList.js
│   ├── filter/
│   │   ├── Filter.jsx
│   │   ├── Filter.styled.js
│   │   └── useFilter.js
│   ├── general-product-list/
│   │   ├── GeneralProductList.jsx
│   │   ├── GeneralProductList.styled.js
│   │   └── useGeneralProductList.js
│   └── pagination/
│       ├── Pagination.jsx
│       ├── Pagination.styled.js
│       └── usePagination.js
└── pages/
    ├── ProductDetailPage.jsx
    └── ProductListPage.jsx

주요 기능

헤더

  • 메뉴바 (네비게이션)
  • 로그인 메뉴

메인 페이지

  • 베스트 상품: 인기 상품 목록 표시
  • 전체 상품: 모든 상품 목록
    • 상품 검색 기능
    • 상품 등록 기능
    • 정렬 기능 (최신순, 가격순 등)
    • 페이지네이션

기술 스택

  • Frontend: React, JavaScript
  • 라우팅: React Router DOM
  • HTTP 클라이언트: Axios
  • 빌드 도구: Vite
  • 스타일링: styled components

시작하기

설치

npm install

개발 서버 실행

npm run dev

빌드

npm run build

개발 노트

  • 연습용 프로젝트로 깔끔하고 간단한 구조 유지
  • 기능별로 컴포넌트 분리
  • 재사용 가능한 공통 컴포넌트 활용

Releases

Packages

Contributors

Languages