Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7a3eb04
:recycle: 'nav-menu' 값 상수화
nijesmik Oct 4, 2025
8a94d47
:bug: drawer 높이 수정
nijesmik Oct 4, 2025
e007795
:bug: `ServiceLayout`에 `h-0` 스타일 추가
nijesmik Oct 4, 2025
96c9283
:heavy_plus_sign: `framer-motion` 의존성 추가 #135
nijesmik Oct 4, 2025
68b3b04
:lipstick: 헤더 컴포넌트 blur 효과 추가
nijesmik Oct 4, 2025
e680c68
:sparkles: 헤더 컴포넌트에 애니메이션 효과 추가 #135
nijesmik Oct 5, 2025
d5da7ed
:sparkles: Landing 페이지 컴포넌트에 애니메이션 효과 추가 #135
nijesmik Oct 5, 2025
8078831
:bug: props 오타 수정
nijesmik Oct 5, 2025
3aa162d
🔀 Framer Motion을 활용한 Landing 페이지 애니메이션 추가 (#136)
dolmeengii Oct 10, 2025
6e831ee
:heavy_plus_sign: react-hook-form 의존성 추가 #137
nijesmik Oct 9, 2025
a705e8a
:heavy_plus_sign: storybook 의존성 추가
nijesmik Oct 9, 2025
22f40f1
:truck: 아이콘 컴포넌트 디렉토리 변경
nijesmik Oct 11, 2025
7d692f0
:recycle: 랜딩 페이지 form `react-hook-form` 적용 #137
nijesmik Oct 9, 2025
e8c86eb
:sparkles: 랜딩 페이지 form 스토리 추가
nijesmik Oct 9, 2025
3e1336d
:recycle: `ROUTE` constant 업데이트
nijesmik Oct 9, 2025
80f1ff8
:recycle: Password 컴포넌트 리팩토링
nijesmik Oct 10, 2025
85eed7e
:recycle: 로그인 form `react-hook-form` 적용 #137
nijesmik Oct 10, 2025
060eb01
:sparkles: 로그인 form 스토리 추가
nijesmik Oct 10, 2025
cbfdbba
:arrow_up: storybook 의존성 변경
nijesmik Oct 10, 2025
5fa9da2
:recycle: 회원가입 form `react-hook-form` 적용 #137
nijesmik Oct 11, 2025
940cb00
:sparkles: 회원가입 form 스토리 추가
nijesmik Oct 11, 2025
3dcbb13
:recycle: 타입 리팩토링
nijesmik Oct 11, 2025
be087f5
:recycle: Agreement 컴포넌트 제거 및 공통 컴포넌트로 대체
nijesmik Oct 11, 2025
489b032
:truck: 공통 컴포넌트 폴더 구조 정리
nijesmik Oct 11, 2025
2ed2068
🔀 로그인/회원가입 React Hook Form 적용 및 Storybook 추가 (#138)
dolmeengii Oct 11, 2025
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
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
"eslint-config-prettier",
"next/core-web-vitals"
"next/core-web-vitals",
"plugin:storybook/recommended"
],
"plugins": [
"@typescript-eslint",
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,6 @@ logs
*.log

# JetBrains IDEs (e.g., WebStorm, IntelliJ IDEA)
.idea/
.idea/
*storybook.log
storybook-static
12 changes: 12 additions & 0 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { StorybookConfig } from '@storybook/nextjs-vite';

const config: StorybookConfig = {
stories: ['../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
addons: [],
framework: {
name: '@storybook/nextjs-vite',
options: {},
},
staticDirs: ['../public'],
};
export default config;
16 changes: 16 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { Preview } from '@storybook/nextjs-vite';

import '@/app/styles';

const preview: Preview = {
parameters: {
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
},
};

export default preview;
Loading