Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0d74110
feat : 라우팅 설정
sunjae98 May 18, 2024
7de7adb
design : 헤더 컴포넌트 퍼블리싱
sunjae98 May 18, 2024
54fe31f
refactor : 상담 요청 버튼 데이터 바인딩 처리
sunjae98 May 18, 2024
65231c2
design : section 1 퍼블리싱
sunjae98 May 18, 2024
55b0cd0
feat : 상담 페이지 네비게이트 적용
sunjae98 May 18, 2024
e714f35
feat : faker.js 적용하여 슬라이드 영역 퍼블리싱
sunjae98 May 20, 2024
419981e
feat : 무한 롤링 구현
sunjae98 May 20, 2024
b3be7ac
feat : section 3 퍼블리싱
sunjae98 May 20, 2024
232fc27
design : section 4 퍼블리싱
sunjae98 May 20, 2024
4ed7cc4
design : ~section 6 퍼블리싱
sunjae98 May 20, 2024
6bfbc26
design : 섹션별 컬러 적용
sunjae98 May 30, 2024
a7bbd51
design : 이미지 개수 및 사이즈 조정
sunjae98 May 30, 2024
2a0d7c3
design : 회원가입 페이지 레이아웃 구성
sunjae98 Jun 3, 2024
dbae4b8
design : 회원가입 폼 영역 퍼블리싱
sunjae98 Jun 3, 2024
b908b3f
design : 회원가입 메서드 페이지 퍼블리싱
sunjae98 Jun 3, 2024
28b5d97
design : 회원가입 폼 페이지 퍼블리싱
sunjae98 Jun 3, 2024
c591f34
chore : msw setting
sunjae98 Jun 3, 2024
4fcf5a3
design : 로그인 페이지 퍼블리싱
sunjae98 Jun 3, 2024
2cae87a
feat : 헤더 로그인 버튼 네비게이트 적용
sunjae98 Jun 3, 2024
7f9c02f
fix : 메인 이미지 -> 비디오로 변경
sunjae98 Jun 3, 2024
8ab672f
feat : section3 에 페이드인 효과 적용
sunjae98 Jun 3, 2024
15d14c1
fix : p태그로 변경
sunjae98 Jun 3, 2024
67a7a58
design : contact 페이지 퍼블리싱
sunjae98 Jun 3, 2024
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
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# AUTH_SECRET=mustkeepinsecret
NEXT_PUBLIC_API_MOCKING=enabled
13 changes: 12 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
domains: ["loremflickr.com"],
remotePatterns: [
{
protocol: "https",
hostname: "cdn-front-door.elice.io",
// port: "",
},
], // 이미지를 가져올 호스트를 여기에 추가
},
};

export default nextConfig;
Loading