$ git clone https://github.com/wanted-team2/3week_ncnc.git
.
├── README.md
├── api
│ └── index.ts
├── components
│ ├── base
│ └── domain
├── fileMock.js
├── hooks
│ ├── index.ts
│ ├── useAxios.ts
│ ├── useClickedId.tsx
│ ├── useOption.ts
│ ├── useSwipe.tsx
│ ├── useTabs.tsx
│ └── useWindowWidth.tsx
├── jest.config.js
├── next-env.d.ts
├── next.config.js
├── package.json
├── pages
│ ├── 404
│ ├── _app.tsx
│ ├── _document.tsx
│ ├── brands
│ ├── categories
│ ├── contacts
│ ├── index.tsx
│ └── items
├── pagesStyle
│ ├── brandsStyle.ts
│ ├── categoriesStyle.ts
│ ├── contactStyle.ts
│ ├── homeStyle.ts
│ └── itemStyle.ts
├── public
│ ├── android-chrome-144x144.png
│ ├── apple-touch-icon.png
│ ├── browserconfig.xml
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ ├── fonts
│ ├── images
│ ├── mock
│ ├── mstile-150x150.png
│ └── site.webmanifest
├── styleMock.js
├── styles
│ ├── commonCompo.tsx
│ ├── commonStyle.ts
│ ├── font.ts
│ ├── globalStyle.ts
│ ├── index.ts
│ ├── styled.d.ts
│ └── theme.ts
├── tsconfig.jest.json
├── tsconfig.json
├── types
│ ├── Brand.ts
│ ├── Category.ts
│ ├── ConItem.ts
│ ├── Nested.ts
│ ├── QaType.ts
│ ├── Qas.ts
│ ├── SoonItem.ts
│ ├── Swipe.ts
│ └── index.ts
├── utils
│ └── fucntions
├── yarn-error.log
└── yarn.lock