Skip to content
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

[5주차] Pre:folio 미션 제출합니다 #6

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
48aa605
Initial commit from Create Next App
kongnayeon Nov 9, 2022
e1c65fd
feat: styled-component 세팅
kongnayeon Nov 9, 2022
c3d8382
feat: 폴더 구조 변경 및 recoil 설정
yjoonjang Nov 9, 2022
977c4cf
feat: 폴더 구조 변경 및 getNowPlaying api 연결
yjoonjang Nov 9, 2022
f829be7
feat: homePage 관련 api 불러오기 완료
yjoonjang Nov 9, 2022
be7d00a
feat: upcoming api 연결 및 이미지 썸네일 컴포넌트 레이아웃 제작
yjoonjang Nov 9, 2022
7fbde78
feat: navigation, footer 추가
kongnayeon Nov 10, 2022
2a417d0
docs: .gitignore에 .env 추가
kongnayeon Nov 10, 2022
a21a2f4
feat: 로고 로티 애니메이션 추가
kongnayeon Nov 10, 2022
ac3b43b
feat: homePage 이미지 썸네일에 링크 연결
yjoonjang Nov 10, 2022
bd0aabc
fix: 로띠 파일 경로 수정 및 conflict 해결
yjoonjang Nov 10, 2022
ecda8d7
feat: 원형 썸네일 제작
yjoonjang Nov 10, 2022
2df847c
feat: 직사각형 썸네일 제작
yjoonjang Nov 10, 2022
40db7f1
fix: conflict 해결
kongnayeon Nov 10, 2022
824e57c
fix: navigation 위치 수정, scrollbar 안 보이게 하기
kongnayeon Nov 10, 2022
4a7d8a3
feat: background 이미지 추가, 이미지 크기 잘림 수정
kongnayeon Nov 11, 2022
c810594
style: font-weight 수정, margin 추가
kongnayeon Nov 11, 2022
4d0b28e
fix: Column 컴포넌트 marginHeight 속성 추가
yjoonjang Nov 10, 2022
ab45061
fix: Column 컴포넌트 관련 타입 오류 수정
yjoonjang Nov 11, 2022
92d8a1e
fix: footer 보이도록 수정
yjoonjang Nov 11, 2022
ef5338d
fix: MoviesListBar 스크롤 시 제목 밀림 수정
kongnayeon Nov 11, 2022
3f4a96d
feat: PlayButton width 속성 추가 및 footerState recoil로 상태관리
yjoonjang Nov 11, 2022
da623bf
feat: svg 파일을 컴포넌트로 변환
yjoonjang Nov 11, 2022
73f2428
feat: footer 버튼 클릭 시 아이콘 색상 변경 기능 추가
kongnayeon Nov 11, 2022
6bab1bc
fix: movieListBar 관련 타입 오류 수정
yjoonjang Nov 11, 2022
b6525b4
fix: svg 아이콘 속성 수정
yjoonjang Nov 11, 2022
ed84ba4
fix: lottie loop false 설정
kongnayeon Nov 11, 2022
1580194
fix: lint 설정 변경
yjoonjang Nov 11, 2022
455c39a
style: font 추가
yjoonjang Nov 12, 2022
e811e09
fix: 선택된 푸터 전역으로 상태 관리
yjoonjang Nov 12, 2022
3ab51e7
fix: 푸터 아이콘 클릭 시 글씨 색상 변경 및 아이콘 타입 추가
yjoonjang Nov 13, 2022
d8a3816
fix: 아이콘에 타입 인터페이스 추가
yjoonjang Nov 13, 2022
5f96d99
Feature/폰트 추가 및 아이콘 클릭 시 글씨 색상 변경
kongnayeon Nov 13, 2022
ffceba3
fix: 스크롤 오류 해결
yjoonjang Nov 13, 2022
287cbb1
Fix/스크롤 오류 해결
kongnayeon Nov 13, 2022
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
13 changes: 13 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"presets": ["next/babel"],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
}
]
]
}
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local
.env

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
10 changes: 10 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
images: {
domains: ['https://image.tmdb.org/t/p/original'],
},
};

module.exports = nextConfig;
Loading