Skip to content

Commit

Permalink
[팀 서비스 클론 코딩] 엽토(김건엽) 미션 제출합니다. (#35)
Browse files Browse the repository at this point in the history
* feat: 초기 세팅, 스타일 적용 및 폰트 적용

* feat: Header 컴포넌트 구현

* feat: Image 컴포넌트 추가 및 이미지 파일 추가

* chore: 폰트 파일 추가

* feat: Button 컴포넌트 구현

* feat: ArrowIcon 컴포넌트 구현

* feat: LandingMainSection 컴포넌트 구현

* style: media query 수정

* feat: GuideSection 컴포넌트 구현

* feat: StartSection 컴포넌트 구현

* feat: Footer 컴포넌트 구현

* feat: SideLink 컴포넌트 구현
  • Loading branch information
yeopto authored Oct 15, 2023
1 parent 77feb70 commit 07cef23
Show file tree
Hide file tree
Showing 53 changed files with 7,442 additions and 0 deletions.
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"
}
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
4 changes: 4 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
Loading

0 comments on commit 07cef23

Please sign in to comment.