Skip to content

Conversation

@yulrang
Copy link
Contributor

@yulrang yulrang commented Nov 7, 2024

🔖 Issue Ticket

Ticket

✍️ Description

✅ Checklist

PR

  • Branch Convention 확인

    feat/ 피쳐, fix/ 버그 수정, refactor/ 개선

  • Base Branch 확인
  • 적절한 Label 지정
  • Assignee 및 Reviewer 지정

Test

  • 로컬 작동 확인

Summary by CodeRabbit

  • 새로운 기능

    • 새로운 크루 및 모임 이미지 샘플을 추가하여 양식에서 사용할 수 있도록 개선.
    • 쿼리 훅을 사용하여 크루 데이터 가져오기 방식을 개선, 더 효율적인 데이터 검색 가능.
    • FileInputFileSample 컴포넌트에서 정적 이미지 데이터 처리 기능 향상.
  • 버그 수정

    • 데이터 가져오기 로직을 업데이트하여 더 나은 에러 처리 및 응답 형식 검증 구현.
  • 문서화

    • 인터페이스 수정으로 이미지 URL 속성이 다양한 데이터 유형을 수용하도록 변경.

@coderabbitai
Copy link

coderabbitai bot commented Nov 7, 2024

Walkthrough

이 풀 리퀘스트는 여러 TypeScript 파일을 추가하고 수정하여 이미지 샘플을 배열로 집계하고, 새로운 API 호출 방식을 도입하여 크루 데이터를 가져오는 기능을 구현합니다. ImgCrewSamplesImgGatheringSamples 배열이 각각의 이미지 파일을 포함하고, getCrewList 함수가 크루 목록을 비동기적으로 가져오는 역할을 합니다. 또한, 여러 컴포넌트에서 이미지 샘플을 사용하도록 수정되었습니다.

Changes

파일 경로 변경 요약
public/assets/images/crew-sample/index.tsx ImgCrewSamples 배열을 생성하고 기본 내보내기로 설정.
public/assets/images/gathering-sample/index.tsx ImgGatheringSamples 배열을 생성하고 기본 내보내기로 설정.
src/_apis/crew/get-crew-list.ts getCrewList 비동기 함수 추가, 페이지 매개변수를 사용하여 /crews 엔드포인트에서 데이터 가져오기.
src/_queries/crew-queries.tsx useGetCrewQuery 함수에서 getCrewData 대신 getCrewList 사용으로 변경.
src/app/(crew)/crew/_components/create-crew-form/index.tsx ImgCrewSamplesFileInputWrap 컴포넌트에 추가.
src/app/(crew)/crew/_components/create-gathering-form/index.tsx ImgGatheringSamplesFileInputWrap 컴포넌트에 추가.
src/app/(crew)/crew/_components/create-gathering-modal/presenter.tsx ScrollArea 컴포넌트의 높이를 640에서 760으로 변경.
src/app/(crew)/crew/_components/gathering-detail-modal/presenter.tsx ScrollArea 컴포넌트의 높이를 640에서 760으로 변경.
src/app/(crew)/my-crew/page.tsx fetchCrewData 대신 useGetCrewQuery를 사용하여 크루 데이터 가져오기 방식 변경.
src/app/api/mock-api/crew.ts fetchCrewDatagetCrewData 함수 삭제.
src/components/common/crew-list/crew-card-list.stories.tsx fetchCrewData 대신 useGetCrewQuery를 사용하도록 변경.
src/components/common/input/file-input-wrap/file-input/index.tsx FileInputProps 인터페이스의 value 속성을 `File
src/components/common/input/file-input-wrap/file-sample/index.tsx imgUrl 속성을 image로 변경하고 타입을 StaticImageData로 업데이트.
src/components/common/input/file-input-wrap/index.tsx FileInputPropssample 속성을 추가하고 onChange의 타입을 업데이트.
src/types/create-crew.d.ts CreateCrewRequestTypesimageUrl 속성을 `File
src/types/gathering-data.d.ts CreateGatheringRequestTypeimageUrl 속성을 `File
src/app/(crew)/crew/create/page.tsx initialValue 객체의 subCategorysubLocation 속성을 null로 변경.

Suggested reviewers

  • HaeJungg
  • User850413
  • minkyung5x5

🐇 변화의 순간, 기쁨의 노래
이미지와 데이터가 함께 흐르네,
크루의 모습, 샘플로 가득 차,
새로운 길을 여는 이 순간,
함께 나아가, 더 나은 미래로! 🌟


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions
Copy link

github-actions bot commented Nov 7, 2024

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (11)
src/types/create-crew.d.ts (2)

6-6: 타입 확장이 적절하나 문서화가 필요합니다.

StaticImageData 타입이 추가된 것은 샘플 이미지 지원을 위해 적절한 변경이지만, 각 타입이 언제 사용되는지 명확히 문서화하면 좋겠습니다.

다음과 같이 JSDoc 주석을 추가하는 것을 제안합니다:

+ /**
+  * @property imageUrl
+  * - File: 사용자가 업로드한 이미지
+  * - StaticImageData: 기본 제공되는 샘플 이미지
+  * - null: 이미지가 선택되지 않은 상태
+  */
  imageUrl: File | StaticImageData | null;

Line range hint 1-1: 주석 업데이트가 필요합니다.

"NOTE : imageURL 임시로 File로 지정" 주석이 더 이상 현재 구현과 일치하지 않습니다. StaticImageData가 추가되었으므로 이 주석은 제거하거나 업데이트해야 합니다.

src/_apis/crew/get-crew-list.ts (2)

4-14: API 호출 구현에 대한 개선 제안

  1. 페이지 파라미터 조정 로직(page + 1)이 함수 내부에 숨겨져 있어 혼란을 줄 수 있습니다.
  2. GET 요청의 경우 'Content-Type' 헤더가 불필요할 수 있습니다.

다음과 같은 개선을 고려해보세요:

 export async function getCrewList(page: number, limit: number): Promise<CrewCardInformResponse> {
   try {
+    const adjustedPage = page + 1;
     const response = await fetchApi<CrewCardInformResponse>(
-      `/crews?_page=${page + 1}&_limit=${limit}`,
+      `/crews?_page=${adjustedPage}&_limit=${limit}`,
       {
         method: 'GET',
-        headers: {
-          'Content-Type': 'application/json',
-        },
       },
     );

15-24: 에러 처리 개선 제안

에러 처리가 잘 구현되어 있지만, 몇 가지 개선사항이 있습니다:

  1. 타입 캐스팅을 더 명시적으로 처리할 수 있습니다.
  2. 에러 메시지에 더 구체적인 정보를 포함할 수 있습니다.

다음과 같은 개선을 제안드립니다:

     if (!Array.isArray(response)) {
-      throw new Error('서버 응답이 올바른 형식이 아닙니다.');
+      throw new Error(`서버 응답이 배열 형식이 아닙니다: ${JSON.stringify(response)}`);
     }
-    const data = response as CrewCardInform[];
+    const data: CrewCardInform[] = response;
     const hasNextPage = data.length === limit;

     return { data, hasNextPage };
   } catch (error) {
-    throw new Error('크루 리스트를 불러오는데 실패했습니다.');
+    throw new Error(`크루 리스트를 불러오는데 실패했습니다: ${error instanceof Error ? error.message : '알 수 없는 오류'}`);
   }
src/types/gathering-data.d.ts (1)

34-34: 주석 내용 업데이트가 필요합니다.

현재 주석이 File 타입만 언급하고 있어 StaticImageData 타입이 추가된 현재 상태와 일치하지 않습니다.

다음과 같이 수정해주세요:

-  imageUrl: File | StaticImageData | null; // NOTE : 임시로 File로 설정
+  imageUrl: File | StaticImageData | null; // NOTE : 임시로 File 또는 StaticImageData로 설정
src/app/(crew)/crew/_components/create-gathering-modal/presenter.tsx (1)

28-31: 스타일 속성의 일관성 개선이 필요합니다.

스타일링이 잘 적용되었으나, 다른 모달 컴포넌트들과의 일관성을 위해 공통 스타일을 분리하는 것이 좋을 것 같습니다.

다음과 같이 공통 스타일을 분리하는 것을 제안드립니다:

// src/styles/modal.ts
export const commonModalStyles = {
  content: {
    boxShadow: '0 25px 50px -12px rgba(0,0,0,0.1)',
    borderRadius: '12px',
  },
};

그리고 컴포넌트에서 다음과 같이 사용:

-styles={{
-  root: { '--modal-size': '520px' },
-  content: {
-    boxShadow: '0 25px 50px -12px rgba(0,0,0,0.1)',
-    borderRadius: '12px',
-  },
-}}
+styles={{
+  root: { '--modal-size': '520px' },
+  content: commonModalStyles.content,
+}}
src/app/(crew)/my-crew/page.tsx (1)

17-17: 더 이상 필요하지 않은 TODO 주석을 제거해주세요.

fetchCrewData 함수가 useGetCrewQuery로 대체되었으므로, 이 TODO 주석은 더 이상 관련이 없습니다.

-  // TODO: fetchCrewData 함수를 사용하여 데이터를 불러오기 : 파라미터 수정 필요
src/components/common/input/file-input-wrap/index.tsx (1)

35-37: 반복되는 코드를 개선할 수 있습니다.

FileSample 컴포넌트를 반복적으로 렌더링하는 부분을 map 함수를 사용하여 더 간결하게 작성할 수 있습니다.

다음과 같이 수정하는 것을 제안드립니다:

-      <FileSample image={sample[0]} onChange={handleChange} isBlur={isOtherSelected} />
-      <FileSample image={sample[1]} onChange={handleChange} isBlur={isOtherSelected} />
-      <FileSample image={sample[2]} onChange={handleChange} isBlur={isOtherSelected} />
+      {sample.map((image, index) => (
+        <FileSample
+          key={index}
+          image={image}
+          onChange={handleChange}
+          isBlur={isOtherSelected}
+        />
+      ))}
src/components/common/input/file-input-wrap/file-sample/index.tsx (2)

Line range hint 13-19: 사용하지 않는 convertUrlToFile 함수를 제거해주세요.

StaticImageData로 변경된 이후로 URL을 File로 변환하는 기능이 더 이상 필요하지 않습니다. 코드 정리를 위해 제거를 권장드립니다.

- const convertUrlToFile = async (
-   url: string | undefined,
-   fileName: string,
-   mimeType: string,
- ): Promise<File> => {
-   const res = await fetch(url?.toString() ?? '');
-   const blob = await res.blob();
-   return new File([blob], fileName, { type: mimeType });
- };

Line range hint 43-47: 이미지 접근성 개선이 필요합니다.

alt 텍스트가 "샘플 이미지 1"로 하드코딩되어 있습니다. 이미지의 실제 내용을 설명하는 의미있는 alt 텍스트를 props로 받아 사용하는 것이 좋습니다.

- alt="샘플 이미지 1"
+ alt={alt}

FileSampleProps 인터페이스에도 다음을 추가해주세요:

interface FileSampleProps {
  // ... existing props
  alt: string;
}
src/components/common/input/file-input-wrap/file-input/index.tsx (1)

Line range hint 12-123: StaticImageData 처리 로직이 누락되었습니다.

컴포넌트가 StaticImageData 타입을 지원하도록 선언되었지만, 실제 구현에서 이를 처리하는 로직이 없습니다. 다음 사항들을 고려해야 합니다:

  1. StaticImageData 타입의 미리보기 처리
  2. handleFileLoadhandleChange 함수에서의 StaticImageData 처리

다음과 같은 수정을 제안합니다:

export default function FileInput({ value, isBlur, onChange }: FileInputProps) {
  const [preview, setPreview] = useState<string | null>(null);
  const [fileReader, setFileReader] = useState<FileReader | null>(null);
  const fileInput = useRef<HTMLInputElement>(null);
  const timerRef = useRef<NodeJS.Timeout | null>(null);

+ useEffect(() => {
+   // StaticImageData 처리
+   if (value && 'src' in value) {
+     setPreview(value.src);
+   }
+ }, [value]);

  const handleFileLoad = (file: File) => {
    // 이전 FileReader가 있을 경우 중단
    if (fileReader) {
      fileReader.abort();
    }

    const reader = new FileReader();
    setFileReader(reader);

    reader.onloadend = () => {
      setPreview(reader.result as string);
    };
    reader.readAsDataURL(file);
  };

  const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
    if (e.target.files && e.target.files.length > 0) {
      const file = e.target.files[0];
-     onChange(file);
+     onChange(file as File | StaticImageData);
      e.target.value = '';

      // 디바운싱된 파일 로드 실행
      debouncedHandleFileLoad(file);
    }
  };
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between dfb5aa7 and 477eaf3.

⛔ Files ignored due to path filters (6)
  • public/assets/images/crew-sample/crew-sample-1.jpg is excluded by !**/*.jpg
  • public/assets/images/crew-sample/crew-sample-2.jpg is excluded by !**/*.jpg
  • public/assets/images/crew-sample/crew-sample-3.jpg is excluded by !**/*.jpg
  • public/assets/images/gathering-sample/gathering-sample-1.jpg is excluded by !**/*.jpg
  • public/assets/images/gathering-sample/gathering-sample-2.jpg is excluded by !**/*.jpg
  • public/assets/images/gathering-sample/gathering-sample-3.jpg is excluded by !**/*.jpg
📒 Files selected for processing (16)
  • public/assets/images/crew-sample/index.tsx (1 hunks)
  • public/assets/images/gathering-sample/index.tsx (1 hunks)
  • src/_apis/crew/get-crew-list.ts (1 hunks)
  • src/_queries/crew-queries.tsx (2 hunks)
  • src/app/(crew)/crew/_components/create-crew-form/index.tsx (2 hunks)
  • src/app/(crew)/crew/_components/create-gathering-form/index.tsx (2 hunks)
  • src/app/(crew)/crew/_components/create-gathering-modal/presenter.tsx (1 hunks)
  • src/app/(crew)/crew/_components/gathering-detail-modal/presenter.tsx (1 hunks)
  • src/app/(crew)/my-crew/page.tsx (2 hunks)
  • src/app/api/mock-api/crew.ts (0 hunks)
  • src/components/common/crew-list/crew-card-list.stories.tsx (2 hunks)
  • src/components/common/input/file-input-wrap/file-input/index.tsx (1 hunks)
  • src/components/common/input/file-input-wrap/file-sample/index.tsx (3 hunks)
  • src/components/common/input/file-input-wrap/index.tsx (2 hunks)
  • src/types/create-crew.d.ts (1 hunks)
  • src/types/gathering-data.d.ts (1 hunks)
💤 Files with no reviewable changes (1)
  • src/app/api/mock-api/crew.ts
✅ Files skipped from review due to trivial changes (3)
  • public/assets/images/crew-sample/index.tsx
  • public/assets/images/gathering-sample/index.tsx
  • src/app/(crew)/crew/_components/gathering-detail-modal/presenter.tsx
🔇 Additional comments (20)
src/_apis/crew/get-crew-list.ts (1)

1-2: 깔끔한 import 구문입니다!

필요한 유틸리티와 타입만 가져오고 있어 적절합니다.

src/_queries/crew-queries.tsx (2)

2-2: 목업 API에서 실제 API 구현으로의 전환이 적절합니다.

목업 데이터 대신 실제 API를 사용하도록 변경한 것은 좋은 개선입니다.


34-34: 새로운 API 구현의 일관성 확인이 필요합니다.

getCrewList 함수가 이전 getCrewData 함수와 동일한 페이지네이션 로직과 반환 형식을 유지하는지 확인해주세요.

다음 스크립트로 API 구현을 확인할 수 있습니다:

✅ Verification successful

Let me gather more information about the pagination logic and return types.


Let me gather more information about the mock data and previous implementation.


Based on the code analysis, I can now provide the final response:

페이지네이션 로직과 반환 형식이 일관성 있게 구현되었습니다.

  • getCrewList 함수는 CrewCardInformResponse 타입을 반환하며, 이는 datahasNextPage 필드를 포함합니다.
  • 무한 스크롤 구현을 위한 페이지네이션 로직이 useInfiniteScroll 훅과 함께 적절히 구현되어 있습니다:
    • pageParam을 통한 페이지 번호 관리
    • hasNextPage 기반의 다음 페이지 존재 여부 확인
    • 페이지당 3개의 아이템을 로드하는 일관된 구현
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: API 구현의 일관성 확인

# 이전 mock API와 새로운 API 구현 비교
echo "이전 mock API 구현 확인:"
rg -A 5 "getCrewData" --type ts

echo "새로운 API 구현 확인:"
rg -A 5 "getCrewList" --type ts

Length of output: 1409


Script:

#!/bin/bash
# Check type definitions and interfaces
echo "Type definitions for CrewCardInform:"
rg -B 2 -A 5 "CrewCardInform" --type ts

echo "\nPagination related types and interfaces:"
rg -B 2 -A 5 "Page" --type ts

echo "\nCheck mock data structure if available:"
fd -e json -e ts mock.*crew

Length of output: 52788


Script:

#!/bin/bash
# Check mock data and previous implementation
echo "Mock data structure:"
rg -A 10 "crewData" src/mock/crew-data.ts

echo "\nPrevious getCrewData implementation:"
rg -A 10 "getCrewData" --type ts

Length of output: 488

src/components/common/crew-list/crew-card-list.stories.tsx (2)

2-2: 임포트 구조가 개선되었습니다!

목업 API에서 실제 API 구현으로의 전환이 잘 이루어졌으며, 절대 경로를 사용하여 임포트 구조가 더 명확해졌습니다.

Also applies to: 4-4


31-32: 데이터 페치 로직이 간소화되었습니다만, 페이지네이션 검증이 필요합니다.

useGetCrewQuery를 직접 사용하도록 변경되어 코드가 더 간결해졌습니다. 하지만 페이지네이션이 여전히 정상적으로 작동하는지 확인이 필요합니다.

페이지네이션 구현을 확인하기 위해 다음 스크립트를 실행하세요:

✅ Verification successful

The output shows that pagination is properly implemented in both the query and API layer. Let me generate the final response in Korean:

페이지네이션이 정상적으로 구현되어 있음을 확인했습니다.

useGetCrewQuery와 getCrewList API 모두 페이지네이션 파라미터를 올바르게 처리하고 있습니다:

  • useGetCrewQuerypageParam을 통해 페이지 정보를 관리하며 getNextPageParam 로직이 구현되어 있습니다
  • getCrewList API는 pagelimit 파라미터를 받아 페이지네이션을 처리합니다
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify pagination implementation in useGetCrewQuery

# Check if useGetCrewQuery implements pagination parameters
ast-grep --pattern 'export const useGetCrewQuery = ($_) => {
  $$$
}'

# Check if getCrewList API accepts pagination parameters
rg -A 5 "getCrewList.*page"

Length of output: 992

src/app/(crew)/crew/_components/create-gathering-modal/presenter.tsx (1)

39-39: ScrollArea 높이 조정이 적절해 보입니다.

GatheringDetailModalPresenter와 동일한 높이(760px)로 조정되어 일관된 사용자 경험을 제공합니다.

src/app/(crew)/my-crew/page.tsx (2)

4-4: 쿼리 훅 import가 적절히 추가되었습니다!

기존 데이터 페칭 로직을 쿼리 훅으로 마이그레이션하기 위한 적절한 import 구문입니다.


18-20: 페이지네이션 파라미터 처리 확인이 필요합니다.

useGetCrewQuery로의 마이그레이션은 좋은 개선이지만, 페이지네이션 파라미터가 올바르게 처리되는지 확인이 필요합니다.

✅ Verification successful

페이지네이션이 올바르게 구현되어 있습니다.

useGetCrewQuery와 useInfiniteScroll 훅의 구현을 확인한 결과, 페이지네이션 관련 파라미터들이 적절하게 처리되고 있습니다:

  • pageParam 파라미터가 올바르게 정의되어 있음
  • getNextPageParam 함수를 통한 다음 페이지 계산이 구현되어 있음
  • hasNextPage를 통한 페이지 종료 처리가 구현되어 있음
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify pagination parameter handling in useGetCrewQuery

# Check implementation of useGetCrewQuery
ast-grep --pattern 'export const useGetCrewQuery = $_'

# Check implementation of getCrewList
ast-grep --pattern 'export const getCrewList = $_'

Length of output: 109


Script:

#!/bin/bash
# Search for files containing useGetCrewQuery
rg -l "useGetCrewQuery"

# Search for the implementation of useGetCrewQuery with context
rg "useGetCrewQuery" -A 10

# Search for any pagination related query parameters
rg "pageParam|getNextPageParam|fetchNextPage" -A 5

Length of output: 11338

src/components/common/input/file-input-wrap/index.tsx (3)

4-4: 타입 정의가 개선되었습니다.

인터페이스와 타입 정의가 명확하게 개선되었습니다. StaticImageData 타입을 활용하여 이미지 샘플 배열을 처리하는 방식이 타입 안정성을 높여줍니다.

Also applies to: 10-11


Line range hint 19-24: handleChange 함수의 타입 안정성이 향상되었습니다.

StaticImageData 타입을 명시적으로 사용하여 샘플 이미지 처리의 안정성이 개선되었습니다. 상태 업데이트 순서도 논리적입니다.


14-15: ⚠️ Potential issue

상태 관리 로직 검토가 필요합니다.

초기 상태값이 value로 설정되어 있는데, valueFile | null 타입인 반면 fileValue 상태는 File | StaticImageData | null 타입입니다. 타입 불일치로 인한 잠재적 문제가 발생할 수 있습니다.

다음과 같이 수정하는 것을 제안드립니다:

-  const [fileValue, setFileValue] = useState<File | StaticImageData | null>(value);
+  const [fileValue, setFileValue] = useState<File | StaticImageData | null>(null);
+  
+  useEffect(() => {
+    setFileValue(value);
+  }, [value]);
src/components/common/input/file-input-wrap/file-sample/index.tsx (3)

2-2: 타입 안정성이 향상된 인터페이스 변경이 확인되었습니다.

string 타입 대신 StaticImageData를 사용함으로써 런타임 오류를 방지하고 더 나은 타입 안정성을 제공합니다.

Also applies to: 5-5, 7-7


10-10: 컴포넌트 props가 인터페이스 변경사항과 일치합니다.

imgUrl에서 image로의 변경이 일관되게 적용되었습니다.


24-24: handleClick 함수가 적절히 단순화되었습니다.

파일 변환 로직이 제거되고 StaticImageData를 직접 전달하도록 변경되어 코드가 더 간결해졌습니다.

src/components/common/input/file-input-wrap/file-input/index.tsx (2)

2-2: StaticImageData 타입 추가가 적절합니다!

next/image에서 StaticImageData를 가져오는 것은 정적 이미지 처리를 위한 좋은 접근 방식입니다.


Line range hint 1-123: 다른 컴포넌트들과의 호환성 검증이 필요합니다.

이 변경사항이 FileInput 컴포넌트를 사용하는 다른 컴포넌트들에 미치는 영향을 확인해야 합니다.

✅ Verification successful

변경사항이 기존 사용처와 호환됩니다.

FileInput 컴포넌트의 변경사항을 검토한 결과:

  • FileInputWrap 컴포넌트에서 사용되는 props(value, onChange, isBlur)가 모두 올바르게 전달되고 있습니다.
  • 새로운 기능(디바운싱, 파일 로드 중단)은 내부 구현사항으로 외부 인터페이스에 영향을 주지 않습니다.
  • stories 파일에서도 호환성 문제가 없습니다.
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# FileInput 컴포넌트를 사용하는 다른 컴포넌트들 검색
echo "FileInput 컴포넌트 사용처 확인:"
rg -l "FileInput" src/components/

Length of output: 365


Script:

#!/bin/bash
# FileInput 컴포넌트의 사용 패턴 확인
echo "file-input-wrap/index.tsx 내용:"
cat src/components/common/input/file-input-wrap/index.tsx

echo -e "\n\nfile-input-wrap/file-sample/file-sample.stories.tsx 내용:"
cat src/components/common/input/file-input-wrap/file-sample/file-sample.stories.tsx

Length of output: 3438

src/app/(crew)/crew/_components/create-gathering-form/index.tsx (2)

12-12: 이미지 샘플 임포트가 추가되었습니다.

새로운 ImgGatheringSamples 임포트를 통해 모임 생성 시 사용할 수 있는 샘플 이미지들이 제공됩니다.


Line range hint 93-98: FileInputWrap 컴포넌트에 샘플 이미지 기능이 추가되었습니다.

FileInputWrap 컴포넌트에 sample prop이 전달되어 사용자가 샘플 이미지를 선택할 수 있게 되었습니다. 이는 사용자 경험을 향상시키는 좋은 개선사항입니다.

다만, 다음 사항들을 확인해 주시기 바랍니다:

  • FileInputWrap 컴포넌트가 sample prop을 올바르게 처리하는지
  • 샘플 이미지 선택 시 imageUrl 상태가 정상적으로 업데이트되는지

샘플 이미지 처리 로직을 확인하기 위해 다음 스크립트를 실행합니다:

✅ Verification successful

FileInputWrap 컴포넌트의 샘플 이미지 기능이 정상적으로 구현되어 있습니다.

FileInputWrap 컴포넌트의 구현을 검토한 결과:

  • sample prop이 StaticImageData[] 타입으로 올바르게 정의되어 있습니다
  • 샘플 이미지 선택 시 handleChange 함수를 통해 상태가 정상적으로 업데이트됩니다
  • 사용자가 샘플 이미지와 파일 업로드를 전환할 때 UI가 적절하게 반응합니다
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# FileInputWrap 컴포넌트에서 sample prop 처리 로직 확인
rg -A 5 "sample.*prop" "src/components/common/input/file-input-wrap"

Length of output: 68


Script:

#!/bin/bash
# FileInputWrap 컴포넌트 찾기
fd "file-input-wrap" --type f

# FileInputWrap 컴포넌트의 전체 구현 확인
ast-grep --pattern 'interface FileInputWrapProps {
  $$$
}'

# sample prop 사용 부분 검색
rg -A 5 "sample.*=" 

Length of output: 2474


Script:

#!/bin/bash
# FileInputWrap 컴포넌트의 전체 구현 확인
cat src/components/common/input/file-input-wrap/index.tsx

# FileSample 컴포넌트 구현 확인
ast-grep --pattern 'const FileSample = ({ $$ }) => {
  $$$
}'

# handleChange 함수 구현 확인
ast-grep --pattern 'const handleChange = ($$$) => {
  $$$
}'

Length of output: 3509

src/app/(crew)/crew/_components/create-crew-form/index.tsx (2)

14-14: 이미지 샘플 임포트가 올바르게 추가되었습니다.

이미지 샘플을 위한 새로운 임포트가 적절하게 추가되었습니다.


158-162: FileInputWrap 컴포넌트의 sample 속성이 올바르게 구현되었습니다.

FileInputWrap 컴포넌트에 이미지 샘플 기능이 적절하게 추가되었습니다. 다만, 컴포넌트의 인터페이스가 올바르게 업데이트되었는지 확인이 필요합니다.

✅ Verification successful

FileInputWrap 컴포넌트의 인터페이스가 올바르게 구현되었습니다.

FileInputProps 인터페이스에 sample 속성이 필수 프로퍼티로 정의되어 있으며, StaticImageData[] 타입으로 올바르게 구현되어 있습니다. 컴포넌트 내부에서도 sample 프로퍼티를 활용하여 이미지 샘플을 적절하게 렌더링하고 있습니다.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# FileInputWrap 컴포넌트의 인터페이스 확인
ast-grep --pattern 'interface FileInputWrapProps {
  $$$
  sample?: $_
  $$$
}'

Length of output: 81


Script:

#!/bin/bash
# FileInputWrap 컴포넌트 관련 파일 찾기
fd "FileInputWrap" --type f

# FileInputWrap 컴포넌트의 Props 인터페이스 검색
rg "interface.*FileInputWrapProps" -A 10

# FileInputWrap 컴포넌트 정의 검색
ast-grep --pattern 'const FileInputWrap = ({ $$$, sample, $$$ }: $_) => {
  $$$
}'

Length of output: 155


Script:

#!/bin/bash
# src 디렉토리 내에서 FileInputWrap 컴포넌트 관련 코드 검색
rg "FileInputWrap" src/ -B 2 -A 10

# Props 타입 정의 검색을 위한 다른 패턴 시도
rg "type.*FileInputWrapProps" -A 10

# 컴포넌트 파일 내용 직접 확인
fd -t f "FileInputWrap" -x cat {}

Length of output: 6683


Script:

#!/bin/bash
# FileInputProps 인터페이스/타입 정의 검색
rg "type.*FileInputProps|interface.*FileInputProps" src/components/common/input/file-input-wrap/index.tsx -A 10

# 파일 전체 내용 확인
cat src/components/common/input/file-input-wrap/index.tsx

Length of output: 2058

location: string;
totalCount: number;
imageUrl: File | null; // NOTE : 임시로 File로 설정
imageUrl: File | StaticImageData | null; // NOTE : 임시로 File로 설정
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

StaticImageData 타입을 가져오도록 수정이 필요합니다.

StaticImageData 타입을 사용하기 위해서는 next/image에서 해당 타입을 가져와야 합니다.

다음과 같이 수정해주세요:

+import { StaticImageData } from 'next/image';

Committable suggestion skipped: line range outside the PR's diff.

Comment on lines 7 to 9
value: File | StaticImageData | null;
onChange: (value: File | null) => void;
isBlur: boolean;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

타입 불일치 문제가 있습니다!

value prop이 StaticImageData를 받을 수 있지만, onChange 콜백은 StaticImageData를 처리할 수 없습니다. 이는 런타임 오류를 발생시킬 수 있습니다.

다음과 같이 수정하는 것을 제안합니다:

export interface FileInputProps {
-  value: File | StaticImageData | null;
-  onChange: (value: File | null) => void;
+  value: File | StaticImageData | null;
+  onChange: (value: File | StaticImageData | null) => void;
  isBlur: boolean;
}
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
value: File | StaticImageData | null;
onChange: (value: File | null) => void;
isBlur: boolean;
value: File | StaticImageData | null;
onChange: (value: File | StaticImageData | null) => void;
isBlur: boolean;

@github-actions
Copy link

github-actions bot commented Nov 7, 2024

@github-actions
Copy link

github-actions bot commented Nov 7, 2024

@github-actions
Copy link

github-actions bot commented Nov 7, 2024

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (3)
src/components/common/input/file-input-wrap/index.tsx (2)

14-15: 상태 관리가 잘 구현되었으나, 초기 상태 설정을 개선할 수 있습니다.

현재 구현은 정확하지만, 초기 상태에 대한 유효성 검사를 추가하면 더 안전할 것 같습니다.

다음과 같이 초기 상태 검증을 추가하는 것을 고려해보세요:

-  const [fileValue, setFileValue] = useState<File | StaticImageData | null>(value);
+  const [fileValue, setFileValue] = useState<File | StaticImageData | null>(() => {
+    if (value instanceof File || value === null || 'src' in value) {
+      return value;
+    }
+    return null;
+  });

Line range hint 19-31: 핸들러 함수의 타입 안전성을 개선할 수 있습니다.

handleChange 함수가 StaticImageData 타입만 처리하도록 제한된 것은 좋습니다. 하지만 타입 검증을 추가하면 더 안전할 것 같습니다.

다음과 같이 타입 검증을 추가하는 것을 추천드립니다:

-  const handleChange = (inputValue: StaticImageData) => {
+  const handleChange = (inputValue: StaticImageData) => {
+    if (!('src' in inputValue)) {
+      console.error('Invalid image data provided');
+      return;
+    }
     setIsOtherSelected(false);
     setIsSampleSelected(true);
     setFileValue(inputValue);
     onChange(inputValue);
   };
src/components/common/input/file-input-wrap/file-sample/file-sample.stories.tsx (1)

29-33: 상태 관리 로직 개선이 필요합니다.

파일 선택과 블러 처리에 대한 상태 관리가 개선될 수 있습니다:

  1. StaticImageData 타입 추가는 적절하나, 타입 정의를 별도의 타입으로 분리하는 것이 좋습니다.
  2. 블러 상태 초기화 로직이 handleFileChange에 하드코딩되어 있습니다.

다음과 같은 개선을 제안합니다:

+type FileType = File | StaticImageData | null;

-const [selectedFile, setSelectedFile] = useState<File | StaticImageData | null>(null);
+const [selectedFile, setSelectedFile] = useState<FileType>(null);

-const handleFileChange = (file: File | StaticImageData | null) => {
+const handleFileChange = (file: FileType) => {
   setSelectedFile(file);
-  setIsBlur(false); // 파일 선택 시 블러 해제
};

+const handleBlurReset = () => setIsBlur(false);
+
+useEffect(() => {
+  if (selectedFile) {
+    handleBlurReset();
+  }
+}, [selectedFile]);
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between daf1c9d and 0704cc0.

📒 Files selected for processing (3)
  • src/components/common/input/file-input-wrap/file-input/file-input.stories.tsx (3 hunks)
  • src/components/common/input/file-input-wrap/file-sample/file-sample.stories.tsx (3 hunks)
  • src/components/common/input/file-input-wrap/index.tsx (2 hunks)
🔇 Additional comments (6)
src/components/common/input/file-input-wrap/index.tsx (1)

4-4: 타입 정의가 적절히 구현되었습니다!

StaticImageData를 추가하여 파일과 이미지 샘플을 모두 처리할 수 있도록 타입을 확장한 것이 좋습니다.

Also applies to: 9-11

src/components/common/input/file-input-wrap/file-input/file-input.stories.tsx (2)

2-2: StaticImageData 타입 import 추가가 적절합니다.

Next.js의 Image 컴포넌트와의 호환성을 위해 필요한 import입니다.


29-29: useState 타입 확장이 적절합니다.

File | StaticImageData | null 타입으로 확장하여 정적 이미지와 파일 업로드를 모두 지원할 수 있게 되었습니다.

src/components/common/input/file-input-wrap/file-sample/file-sample.stories.tsx (3)

2-2: 새로운 이미지 처리 기능을 위한 import 추가가 적절합니다.

StaticImageData 타입과 ImgCrewSamples의 추가로 정적 이미지 처리 기능이 강화되었습니다.

Also applies to: 5-5


Line range hint 55-59: 샘플 이미지 참조가 적절히 구현되었습니다.

ImgCrewSamples 배열의 첫 번째 이미지를 사용하는 것이 하드코딩된 URL보다 더 관리하기 좋은 방식입니다.

#!/bin/bash
# Description: ImgCrewSamples 배열의 구현을 확인합니다.
rg -t tsx "export.*ImgCrewSamples.*=" -A 5

12-14: prop 이름 변경에 따른 영향도 확인이 필요합니다.

imgUrl에서 image로의 prop 이름 변경이 이루어졌습니다. 이 변경이 다른 컴포넌트에도 영향을 미칠 수 있습니다.

✅ Verification successful

Let me analyze the usage of these props in the codebase, particularly focusing on the file-sample component and related files.


Let me check the component implementation and its usages to verify if this prop name change affects other parts of the codebase.


Let me check the component's implementation and its usage to verify if this prop name change is localized to the stories file or affects other parts of the codebase.


Let me check how the FileSample component is used in the parent component and its implementation to verify the prop name change impact.


prop 이름 변경이 올바르게 적용되어 있습니다.

stories 파일에서의 image prop 이름은 실제 컴포넌트 구현 및 사용과 일치합니다. FileSample 컴포넌트의 인터페이스와 부모 컴포넌트에서의 사용 모두 image prop을 사용하고 있어 일관성이 유지되어 있습니다.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: prop 이름 변경으로 인한 영향을 받는 파일들을 확인합니다.
rg "imgUrl" --type ts --type tsx

Length of output: 161


Script:

#!/bin/bash
# Search for imgUrl or image prop in TypeScript and TSX files
rg "imgUrl|image.*prop" -t ts -t tsx -A 3

# Search for specific file and its content
fd "file-sample" -e tsx -e ts -x cat {}

Length of output: 1705


Script:

#!/bin/bash
# Search for the FileSample component implementation
fd "file-sample" -e tsx -x cat {} | grep -v "stories"

# Search for any usage of FileSample component in the codebase
rg "FileSample" -t tsx -t ts -A 2

Length of output: 1707


Script:

#!/bin/bash
# Search for the index file in the same directory
fd "index" --parent-dir "src/components/common/input/file-input-wrap/file-sample" -x cat {}

# Search for any imports of FileSample
rg "import.*FileSample" --type-add 'tsx:*.{tsx,ts}' -t tsx

Length of output: 626


Script:

#!/bin/bash
# Check the content of the parent component that imports FileSample
cat src/components/common/input/file-input-wrap/index.tsx

# Try to find the implementation file
fd "file-sample" --full-path src/components/common/input/file-input-wrap/file-sample --extension tsx --exclude "*.stories.tsx" -x cat {}

Length of output: 3186

Comment on lines +35 to +37
<FileSample image={sample[0]} onChange={handleChange} isBlur={isOtherSelected} />
<FileSample image={sample[1]} onChange={handleChange} isBlur={isOtherSelected} />
<FileSample image={sample[2]} onChange={handleChange} isBlur={isOtherSelected} />
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

배열 접근에 대한 안전성 검증이 필요합니다.

현재 구현은 sample 배열이 항상 3개의 항목을 가진다고 가정하고 있습니다. 배열의 길이가 부족할 경우 런타임 오류가 발생할 수 있습니다.

다음과 같이 안전한 배열 접근을 구현하는 것을 추천드립니다:

-      <FileSample image={sample[0]} onChange={handleChange} isBlur={isOtherSelected} />
-      <FileSample image={sample[1]} onChange={handleChange} isBlur={isOtherSelected} />
-      <FileSample image={sample[2]} onChange={handleChange} isBlur={isOtherSelected} />
+      {sample.map((image, index) => (
+        <FileSample
+          key={index}
+          image={image}
+          onChange={handleChange}
+          isBlur={isOtherSelected}
+        />
+      ))}
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<FileSample image={sample[0]} onChange={handleChange} isBlur={isOtherSelected} />
<FileSample image={sample[1]} onChange={handleChange} isBlur={isOtherSelected} />
<FileSample image={sample[2]} onChange={handleChange} isBlur={isOtherSelected} />
{sample.map((image, index) => (
<FileSample
key={index}
image={image}
onChange={handleChange}
isBlur={isOtherSelected}
/>
))}

Comment on lines +58 to 60
onChange: (newValue: File | StaticImageData | null) => {
action('onChange')({ image: newValue });
},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

onChange 핸들러의 타입 정의와 구현에 대한 개선이 필요합니다.

현재 구현에서 몇 가지 개선할 점이 있습니다:

  1. 타입 안전성: action 호출 시 객체 래핑이 불필요할 수 있습니다
  2. 일관성: 다른 곳에서는 직접 값을 전달하는데 여기서만 객체로 감싸고 있습니다

다음과 같이 수정하는 것을 제안드립니다:

-  onChange: (newValue: File | StaticImageData | null) => {
-    action('onChange')({ image: newValue });
-  },
+  onChange: (newValue: File | StaticImageData | null) => {
+    action('onChange')(newValue);
+  },
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
onChange: (newValue: File | StaticImageData | null) => {
action('onChange')({ image: newValue });
},
onChange: (newValue: File | StaticImageData | null) => {
action('onChange')(newValue);
},

Copy link
Contributor

@HaeJungg HaeJungg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

드디어 빌드 에러를 해결하셨군녀🥹 수고하셨습니다!!!

@yulrang yulrang merged commit 3367a8d into develop Nov 7, 2024
yulrang added a commit that referenced this pull request Nov 7, 2024
* ✨ feat: 확인 취소, 확인 모달 추가

* 💄 design: 버튼 호버시 강조 디자인 추가

* 🗑️ chore: 안쓰는 파일 삭제

* 🐛 fix: api 유틸 간단하게 수정

* 📝 docs: 프리티어, tsconfig order 추가

* ✨ feat: 목 api 변경, 예시 코드 추가

* ✨ feat: 에러처리 추가

* ✨ feat: suspense가 가능하도록 수정

* 🎨 style: eslint changed

* ✨ Feat: auth store 추가, 💄 style: prettier import order 추가

* 💄 style: import order 수정

* 💄 design: 모달 수정

* 🚧 wip: 이전으로 되돌림

* 🐛 Fix: svgr 사용으로 src에 넣은 svg 파일을 파일 주소로 바꿈

* 💄 design: 좋아요 컴포넌트 디자인변경

* ✨ feat: 하트 컴포넌트 연결, id 추가

* 🗑️ chore: 파일 위치변경

* 🎨 style: 글씨체 선언 변경

* 🐛 fix: 디테일 페이지에서 클릭 안되게 변경, 약속 데이터 변경, 캔슬 기능삭제(완전히 삭제되는 방식)

* 🐛 fix: 데이터 변경

* 🐛 test: 없는 테스트 삭제

* 👷 Chore: svgr.d.ts 파일의 ?url 타입 설정 변경 후 Image에 쓰인 svg파일 주소 모두 수정

* 🐛 Fix: svgr 제거

* 👷 Chore: storybook의 main.ts 파일에서 svgr 관련 설정 지움

* ♻️ refactor: 리뷰 데이터 및 리뷰 타입 빼기

* ✨ feat: mock api

* ✨ Feat: login API 추가

* 🐛 fix: 달라진 데이터 타입에 따른 prop 수정

* 🧪 test: storybook 수정

* ✨ Feat: getUser API 추가

* ✨ Feat: 헤더에 토큰 추가

* 📦 chore: add 케밥 아이콘

* 💄 design: 프로필 이미지, 프로필 모은 컴포넌트 디자인 수정

* 💄 design: 크루카드 디자인 변경

* 🐛 fix: 데이터 변경

* 🐛 fix: 스토리북 오류 수정

* ✨ Feat: 헤더에 로그아웃 기능 추가

* 🐛 fix: storybook에서 isauth arg 삭제

* ✨ feat: format-date 함수 추가

* 💄 design: 바뀐 디자인 ui 적용

* 📦 package: merge 후 필요 패키지 설치

* ✨ Feat: Signup 페이지 추가, 내부의 useForm을 외부에서 선언 하도록 변경

* Feat/cr 70/my page (#43)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* ✨ Feat: 마이페이지 상단 작성

* 🎨 Style: 프리티어 적용

* 🐛 Fix: data type 수정

* 🐛 Fix: data type 수정

* 🐛 Fix: data type 수정

* 💄 design: 마이페이지에 리뷰 리스트 삽입

* 📝 docs: 이전 내용 삭제

* ✨ Feat: 회원가입 API 추가

* ✨ feat: 리뷰 점수 및 그래프 추가

* 💄 Style: 전체페이지 레이아웃 수정

* 💄 Style: header에 container 추가

* 💄 Style: mantine font pretendard 설정, ♻️ Refactor: font 리팩토링

* 💄 Style: font-pretendard 삭제

* ♻️ Refactor: theme /style로 파일 위치 이동

* ✨ feat: env 설정 추가

* 🐛 fix: 타입 수정

* 🐛 fix: 데이터 이름 수정

* ✨ feat: 목 api 추가

* 🔥 chore: 사용하지않는 레이아웃 삭제

* 🐛 fix: 데이터에 맞게 수정, 분기처리

* ♻️ refactor: profile 컴포넌트로 대체

* ✨ feat: 캐러셀 직접구현

* 🐛 fix: eslint error

* ✨ feat: 디테일 페이지 조립

* 🐛 fix: 버튼으로 변경 #53

* ♻️ Refactor: auth folder 추가

* Feat/cr 58/create crew page (#41)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Update and rename deploy.yml to trigger.yml

* Update dispatch.yml

* Update and rename trigger.yml to deploy.yml

* Update dispatch.yml

* Create dispatch_develop.yml

* Create deploy_develop.yml

* Update dispatch_develop.yml

* Update deploy_develop.yml

* Update deploy.yml

* Update deploy_develop.yml

* Update dispatch.yml

* Update dispatch_develop.yml

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🐛 Fix: 같은 파일 업로드시 업로드 되지 않는 문제 해결

* 🐛 Fix: 한글입력시 21자에서 되돌아가는 문제 수정

* 🐛 Fix: 블러시 함수 충돌문제 해결

* ✨ feat: 박스 섀도우 config 추가

* ✨ feat: 약속페이지에서 사용하는 카드 추가 #53

* 🧪 test: 스토리북 작성 #53

* ♻️ Refactor: (crew) folder 추가

* 💄 design: 크루카드소제목 변경

* 🐛 fix: 버튼 type 수정

* ✨ feat: cn 훅 추가

* 💄 design: ui 수정

* 💄 Style: auth layout ui 수정, ♻️ Refactor: layout 리팩토링

* ✨ feat: 약속 디테일 모달 연결

* 💄 design: 프로필 컴포넌트로 교체

* ✨ feat: 크루 리뷰부분 조립

* 💄 Style: 디자인에 맞게 레이아웃 UI 수정

* ✨ Feat: 로그인/회원가입 페이지 연결링크 추가

* 🐛 fix: 레이아웃 md 반응형 안되는 문제 수정

* 🚚 chore: 파일 위치 변경

* 💄 design: 레이아웃에 따라 수정

* 💄 design: 레이아웃에 따라 수정

* ✨ feat: 기본 구조 작성 #57

* 💄 design: 헤더 반응형 디자인 수정

* 💄 design: my 간격 추가

* 💄 design: mx 간격 추가

* 🐛 fix: response값에 따른 타입, 값변경

* 🐛 fix: response값에 따른 타입, 값변경

* 📝 docs: mock데이터 추가 #57

* 🐛 fix: 타입에러 수정

* ✨ feat: mock API 추가 #57

* ✨ feat: notification 추가

* ✨ feat: 데이터 삽입 #57

* Feat/cr 76/index page (#51)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Squashed commit of the following:

commit d7c6625
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 12:02:47 2024 +0900

    🐛 Fix: 동작 오류 수정

commit 0f8c22d
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:21:24 2024 +0900

    ♻️ Refactor: 중복 제거

commit 16bd2be
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:13:03 2024 +0900

    🚨 Fix: 스토리북 빌드 오류 수정

commit 0deef07
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:07:42 2024 +0900

    🎨 Style: 주석 추가, 임포트 정리

commit e5c916b
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 10:59:13 2024 +0900

    🐛 Fix: 카테고리 변경 prop 추가, 슬라이더 훅 분리

commit 1deb038
Merge: f152eb7 bd30e0f
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 10:00:04 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit f152eb7
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 20:11:47 2024 +0900

    💄 Design: 여백 수정

commit d63b562
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 14:06:18 2024 +0900

    💄 Design : 메인 카테고리 애니메이션 추가

commit 7a1270a
Merge: a8b962a 1806a4a
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 12:44:48 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit a8b962a
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 10:02:34 2024 +0900

    🚨 Fix: 린트 오류 수정

commit 3ad5b07
Merge: 0a40244 5febab3
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:59:56 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 0a40244
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:34:28 2024 +0900

    💄 Design: 폰트 적용

commit 0729cb0
Merge: 6ee5c6d 3125fb9
Author: leeyoul <[email protected]>
Date:   Thu Oct 31 09:27:33 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 6ee5c6d
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:24:22 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit d623af0
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:12:45 2024 +0900

    💚 CI: 워크플로우 수정

commit a4786e7
Merge: 4c04503 65c32f0
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:08:39 2024 +0900

    Merge branch 'main' into Feat/CR-28/MainCategory

commit 4c04503
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:07:20 2024 +0900

    🚨 Fix: 린트오류 제거

commit 46f2001
Merge: 766b28b e28e039
Author: leeyoul <[email protected]>
Date:   Thu Oct 31 09:02:56 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 766b28b
Author: Lee Youl <[email protected]>
Date:   Wed Oct 30 21:50:46 2024 +0900

    🚚 Chore: 이미지 파일 이동

commit ac3ae1e
Merge: f1241cb e02a1ca
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 19:46:43 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit f1241cb
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 19:44:57 2024 +0900

    🐛 Fix: 메인카테고리 호버 로직 수정

commit e02a1ca
Merge: 525fee9 3ea3d45
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 17:40:31 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 525fee9
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:35:04 2024 +0900

    🎨 Style: 클래스이름 순서 변경

commit 1627d6f
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:26:59 2024 +0900

    💄 Design: 디자인 맞추기

commit 4700099
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:09:13 2024 +0900

    💄 Design: 디자인 맞추기

commit 3c60268
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 16:47:29 2024 +0900

    🔧 Chore: 폰트 설정 수정

commit cdc674d
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 15:49:07 2024 +0900

    💄 Design: 디자인 맞추기

commit c0c5af4
Merge: 9f321f3 7fa5224
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 15:14:19 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 65c32f0
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:53 2024 +0900

    Update dispatch_develop.yml

commit dda1af5
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:43 2024 +0900

    Update dispatch.yml

commit a0bf193
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:32 2024 +0900

    Update deploy_develop.yml

commit 18d89ae
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:21 2024 +0900

    Update deploy.yml

commit 984cefc
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:13:17 2024 +0900

    Update deploy_develop.yml

commit 47a09ec
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:12:52 2024 +0900

    Update dispatch_develop.yml

commit 88d62de
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:50:51 2024 +0900

    Create deploy_develop.yml

commit 451c9c9
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:50:30 2024 +0900

    Create dispatch_develop.yml

commit 614934d
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:49:55 2024 +0900

    Update dispatch.yml

commit e12af5b
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:49:42 2024 +0900

    Update and rename trigger.yml to deploy.yml

commit df8d44d
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:34:05 2024 +0900

    Update dispatch.yml

commit 98a710b
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:33:35 2024 +0900

    Update and rename deploy.yml to trigger.yml

commit 9f321f3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:36:01 2024 +0900

    🐛 Fix: 타입 수정

commit 323f8d0
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:32:49 2024 +0900

    🐛 Fix: 바뀐 테일윈드 설정 반영

commit 321df95
Merge: 5b28fbe 25f04d3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:28:32 2024 +0900

    Merge branch 'Feat/CR-36/DateTimePicker' into Feat/CR-28/MainCategory

commit 5b28fbe
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:32:05 2024 +0900

    🐛 Fix: 타입 수정

commit 25f04d3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:28:49 2024 +0900

    🔧 Chore: 테일윈드 config - typo 설정 수정

commit 1593538
Merge: f35edce af4a767
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:08:59 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit f35edce
Merge: 6c0fd9a 1f62e6a
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 10:04:59 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit ab75dfe
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:02:22 2024 +0900

    🐛 Fix: 타입 수정

commit 9cd7c3d
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 09:42:40 2024 +0900

    ♻️ Refactor : 코드 리뷰 반영

commit 9dcf962
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 18:26:49 2024 +0900

    🐛 Fix: 타입 수정

commit 5075a03
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 18:21:22 2024 +0900

    🐛 Fix: 타입수정

commit 616146b
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 17:25:18 2024 +0900

    ✨ Feat: 크루찾기 상단부분 작성

commit 0af5271
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:26:59 2024 +0900

    🐛 Fix: 컴포넌트 일부 수정

commit 53e296e
Merge: 5592dd2 af4a767
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:10:47 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 5592dd2
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:05:02 2024 +0900

    💄 Design: 크루찾기 페이지 작성중

commit bd2d17e
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:32:45 2024 +0900

    💄 Design: 드롭다운 수정

commit 968c5d5
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:19:27 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' into Feat/CR-28/MainCategory

commit 7ca9626
Merge: 2f9caf5 9f6fd0c
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:17:31 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' into Feat/CR-28/MainCategory

commit 2f9caf5
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:13:44 2024 +0900

    ✨ Feat: hero-crew 추가

commit 076318a
Merge: 2cc2a15 b4f6ae1
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 08:54:30 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 6c0fd9a
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 19:38:12 2024 +0900

    🧪 Test: 스토리북 추가

commit 46be3e6
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 16:19:33 2024 +0900

    🐛 Fix: 프롭 타입 변경

commit 6d4e93f
Merge: 631dadd b4f6ae1
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 16:09:28 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit 631dadd
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 14:12:49 2024 +0900

    💄 Design: 스타일 적용

commit 762b00a
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 14:10:12 2024 +0900

    🚚 Chore: 파일 이동

commit 0a8a6b8
Merge: 4708f62 2934329
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 13:59:31 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit 2cc2a15
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 13:29:34 2024 +0900

    🐛 Fix: 스크롤 슬라이드 개수 수정

commit 5a88811
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:58:41 2024 +0900

    🔧 Chore: 추가로 정의한 설정 순서 변경

commit a8858fc
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:48:39 2024 +0900

    🎨 Style: 클래스명 적용

commit 8fd4718
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:44:59 2024 +0900

    🎨 Style: 프리티어 적용

commit c1ce5d4
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:42:50 2024 +0900

    🎨 Style: 프리티어 적용

commit fd717b4
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:41:06 2024 +0900

    🔧 Chore: tailwind config 추가

commit b3d7e21
Merge: bc47688 ec0a557
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:32:42 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit bc47688
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:31:16 2024 +0900

    💄 Design: 메인 카테고리 이미지 변경

commit ec0a557
Merge: 2c7df60 b7ccd9f
Author: leeyoul <[email protected]>
Date:   Fri Oct 25 11:27:42 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 2c7df60
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:21:12 2024 +0900

    🎨 Style: 프리티어 적용(+설정변경)

commit 55b46f1
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 10:14:11 2024 +0900

    💄 Design: 변경된 카테고리 적용중

commit 4708f62
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 20:30:27 2024 +0900

    💄 Design: 반응형 스타일 적용

commit a3f86a4
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 20:21:05 2024 +0900

    ✨ Feat: date-time-picker 컴포넌트 작성

commit 0d9671a
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:42:38 2024 +0900

    💄 Design: 간격, 폰트 스타일 변경

commit 7eedec7
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:33:48 2024 +0900

    💄 Design: 가운데 정렬 수정

commit f8961b1
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:31:19 2024 +0900

    🐛 Fix: href 수정

commit a1d2303
Merge: d10ee0f 75b18a8
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:26:43 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit 75b18a8
Merge: dbbea45 a0365d4
Author: leeyoul <[email protected]>
Date:   Thu Oct 24 10:23:46 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit d10ee0f
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 20:58:15 2024 +0900

    📝 Docs: 카테고리 데이터 변경

commit dbbea45
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:43:21 2024 +0900

    💄 Design: 반응형 스타일 수정

commit 813c0e0
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:39:41 2024 +0900

    ✨ Feat: CategoryWrap 컴포넌트 작성

commit 2694b8c
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:38:28 2024 +0900

    📝 Docs: category 데이터 변경

commit b78eee8
Merge: 6abf601 c2c30d8
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 17:41:22 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 9f6fd0c
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 17:31:00 2024 +0900

    ♻️ Refactor: dropdown data 형식 변경

commit 7139954
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:40:30 2024 +0900

    💚 CI: 빌드 오류 수정

commit b7cd35c
Merge: 22cb8b2 c2c30d8
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:32:11 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 22cb8b2
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit 059e51b
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit 5b8b587
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit d52272c
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 13:57:58 2024 +0900

    🚧 chore: prettier changed

commit 9f61d36
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit 2b184a3
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit 3f963fa
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit 8c3014b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit 4197735
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 6f5f88b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit 37055bf
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit 44e416b
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:12:08 2024 +0900

    🎨 Style: 프리티어 적용, 경로 수정

commit adad4d0
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit 3daa054
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit 6a7613c
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit 4b0e8b3
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit 3545e29
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit 45f6fc5
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit e98f4c3
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit c998ac6
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 5eee37b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit aea5f1f
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit d45f324
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 15:53:36 2024 +0900

    🎨  Style: 폴더 정리, 프리티어 적용

commit e1f1ab5
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit f48d8a0
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:49:08 2024 +0900

    🧪 test: 스토리북 추가

commit c7e6363
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:37:54 2024 +0900

    ✨ feat: custom progress bar

commit 422e984
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:06:46 2024 +0900

    👷 chore: change settings

commit dfbd868
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit bc027ff
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit e419533
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:11:45 2024 +0900

    🔧 chore: 윈도우 / 맥 둘다 활성화 할 수 있도록 설정변경

commit 9b3d74f
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 13:57:58 2024 +0900

    🚧 chore: prettier changed

commit c315c7d
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit d9d3a40
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:29 2024 +0900

    👷 chore: import 변경, 빌드에러 수정

commit 44fe36f
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:53:52 2024 +0900

    🔧 chore: 삭제된 import order 추가

commit 0db6627
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit f7223ed
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit 8db0768
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:44:31 2024 +0900

    🔧 chore: 프리티어 설정 변경

commit bcc0ac0
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit 7363c78
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:30 2024 +0900

    🧪 test: 프로필 컴포넌트 스토리북 작성

commit a29ae80
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 79207a2
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit 9737ca9
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit cd2a3d5
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:21:13 2024 +0900

    👷 chore: stories 테일윈드 config 추가

commit a14376a
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:20:03 2024 +0900

    👷 chore: next 이미지 처리 위해 모든 도메인 허용

commit 6abf601
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 14:27:20 2024 +0900

    ✨ Feat: MainCategory 컴포넌트 작성

commit 2af3c8d
Author: youl <[email protected]>
Date:   Wed Oct 23 11:56:56 2024 +0900

    ✨ Feat: 초안 작성

commit a15221b
Author: youl <[email protected]>
Date:   Wed Oct 23 11:20:17 2024 +0900

    💄 Design: 폰트 적용, 간격 수정

commit 7875412
Author: youl <[email protected]>
Date:   Wed Oct 23 11:01:58 2024 +0900

    💄 Design: 디자인에 맞게 스타일 수정

commit 3766ab9
Merge: 6663b04 f67c5b9
Author: youl <[email protected]>
Date:   Wed Oct 23 09:35:44 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-10/DropDown

commit 6663b04
Author: youl <[email protected]>
Date:   Wed Oct 23 09:35:28 2024 +0900

    📝 Docs: 스토리북 분류 수정

commit f67c5b9
Merge: 03eca63 d122096
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 09:31:06 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 03eca63
Author: youl <[email protected]>
Date:   Wed Oct 23 09:27:55 2024 +0900

    💄 Design: 바뀐 디자인에 맞게 스타일 수정

commit 6452b93
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:53:29 2024 +0900

    ♻️ Refactor: Remove unused import in page.tsx and fix file name case in drop-down.stories.tsx

commit d854861
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:50:35 2024 +0900

    🚧 Chore: 컴포넌트 파일명 변경, eol 설정 변경

commit 92e9d77
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:18:32 2024 +0900

    📝 Docs : add docs

commit 69f2e7e
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 10:12:31 2024 +0900

    🚧 Chore: eol 설정 변경

commit df7c771
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 10:08:38 2024 +0900

    🚧 Chore: import order 문제 수정

commit 098babd
Merge: edbfe3f c58486f
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 19:19:04 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-10/DropDown

commit edbfe3f
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 19:18:21 2024 +0900

    🔧 chore: update prettier config

commit c58486f
Merge: 7388b34 0365ddb
Author: leeyoul <[email protected]>
Date:   Thu Oct 17 18:36:16 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 7388b34
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 18:27:37 2024 +0900

    🎨 prettier

commit c24f8b7
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 18:22:35 2024 +0900

    ✨ feat: DropDown - variant 추가

commit 970fddf
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:35:19 2024 +0900

    ✅ test: action test 추가

commit b5d3e63
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:18:56 2024 +0900

    📝 docs: storybook docs 추가, chore: PR 템플릿 주소 수정

commit 55ea20c
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:08:19 2024 +0900

    ✨ feat: DropDown 컴포넌트 제작, chore: storybook config 수정, public 폴더 추가

commit 423c5a0
Merge: cb5abbf 39d3c82
Author: leeyoul <[email protected]>
Date:   Thu Oct 17 13:42:43 2024 +0900

    Merge pull request #2 from CodeitFESI4-Team1/develop

    🔧chore: mantine UI + storybook setting

* ♻️ Refactor: json-sever 로 패칭

* 💄 Design: 태블릿에서 1열로 보이도록 수정

* 🔥 Fix: 메인페이지 날짜필터 빼기

* 🐛 Fix: 다시 mockData로 연결

* 🐛 Fix: 링크 수정

* 💄 Design: 레이아웃 분리, 헤더 주석해제

* 🚚 Chore: 파일 이동, 정리

* 💄 Design: fade 애니메이션 적용

* 🎨 Style: 린트 프리티어 적용

* 💄 Design: 검색창 디자인 수정

* 🎨 Style: 린트 프리티어 적용

* ✨ feat: 확인 삭제 모달 추가

* 💄 design: max 1200으로 수정, container 삭제

* 🎨 style: eslint changed

* 🐛 Fix: anchor 를 Link로 변경

* 📦 chore: 패키지 설치

* ✨ feat: react-toastify를 이용해 toast 구현

* 💄 design: UI 작업 #57

* 🐛 fix: (crew) 폴더 안으로 이동

* 🔥 chore: git static 폴더 삭제

* 🐛 fix: 파일위치 재설정

* 🐛 fix: import 오류 해결

* 🐛 fix: 빌드 오류 -> import문 수정

* 🐛 fix: eslint changed

* Feat/cr 71/create gathering modal (#52)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Update and rename deploy.yml to trigger.yml

* Update dispatch.yml

* Update and rename trigger.yml to deploy.yml

* Update dispatch.yml

* Create dispatch_develop.yml

* Create deploy_develop.yml

* Update dispatch_develop.yml

* Update deploy_develop.yml

* Update deploy.yml

* Update deploy_develop.yml

* Update dispatch.yml

* Update dispatch_develop.yml

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 약속 만들기 모달 초안 작성

* 🐛 Fix: 날짜 초기값 설정, 필수값 수정

* 🐛 Fix: 파일정리, onClose Prop 추가

* 🧪 Test: 스토리북 추가

* 🔧 Chore: tailwind config 설정 오타 수정

* 🐛 Fix: 타입 이름 수정

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 린트오류 수정, 스크롤바 수정

* 🚨 Fix: 빌드오류 수정

* 🎨 Style: 린트프리티어 적용

* 🚨 Fix: 린트 적용용

* 💄 Design: 디자인 맞추고 필요없는 파일 삭제

* 🎨 Style: 코드 정리

* 🐛 fix: profiles에 전달하는 prop 수정

* 🔥 fix: 사용하지 않는 테스트 주석처리

* ✏️ fix: 페이지네이션으로 변경하면서 타입 변경

* 📝 docs: 목데이터 rate 변경

* 💄 design: 페이지네이션 디자인 변경

* 🎨 style: eslint changed

* 🐛 fix: 프로필에 이미지 전달안되는 문제 수정 안쓰는 import 제거

* ✨ feat: rate 변경

* 🐛 fix: 크루카드 경로수정

* ✨ feat: 크루 리뷰 데이터 목 api 페이지네이션

* ✨ feat: 리뷰리스트 페이지네이션

* 🧪 test: 스토리북 추가

* 🐛 fix: 파일 위치 변경, 네이밍 변경

* 📝 docs: 데이터 일부 변경

* 📝 docs: 주석 추가

* 🐛 fix:  import 변경

* ✨ feat: 목 데이터 가공

* 💄 design: 스타일 변경

* ✨ feat: 크루 리뷰 조립

* 🐛 fix: 프로필모음 변경에 따른 타입, 코드 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 💄 design: reviewList 삽입

* 🚑 fix: 이름 수정

* 🚑 Fix: 변경요청

* 🔥 Remove: 옛날 develop 파일 삭제

* Feat/56/my crew page (#58)

* Feat: 나의 크루 페이지 초안 작성

* 🚨 Fix: 린트프리티어 적용

* 🚨 Fix: 빌드 오류 수정

* Update crew-card-list.tsx

* 🚨 Fix: 빌드 오류 제거

* 🚚 Chore: 파일 이동

* 💄 Design: PC에서만 2열로 보이도록 수정

* 💄 Design: 패딩 추가, 파일 이동

* 💄 Design : 생성페이지 패딩 추가

* ✨ Feat: 로더 적용

* 🎨 Style: 린트 프리티어 적용

* 💚 CI: 워크플로우 수정

* 🚨 Fix: 절대경로로 수정

* Fix: 빌드에러 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 타입 오류 수정

* 🐛 fix: 경로수정

* ✨ feat: 약속 만들기 모달 연결

* 🐛 Fix: 빌드 오류 수정

* ✨ feat: 확인 취소 모달 연결

* 🐛 fix: 오타 수정

* Feat/60/my-gathering-page (#73)

* ✨ Feat: my-gathering 버튼 추가 및 하위 컴포넌트 분리

* ✨ Feat: 하위 페이지로 분리

* ✨ Feat: GatheringList 추가

* 💄 Style: gatheringlist max-w 삭제

* 💄 Style: 전체 레이아웃에 flex-1 추가

* ✨ Feat: gatheringListWithDate 컴포넌트 추가

* 💄 Style: gatheringListWithDate UI 수정

* ✨ Feat: popoverCalendar 추가, 🐛 Fix: card 모바일환경 이미지 사이즈 수정

* ✨ Feat: 참여한 모임 페이지 추가

* ✨ Feat: gathering Detail Modal API 추가

* 🐛 fix: 경로수정

* 🐛 fix: prettier error 수정

* 🐛 fix: api dummydata로 임시 수정

* 🚨 Fix: 워크플로우 수정

* 💄 design: 리스트 삽입 및 디자인 수정

* 🐛 fix: 타입이름 수정 #67

* 💄 design: UI 수정 #67

* 🐛 fix: cors url 추가

* 🐛 fix: 환경변수로 재설정

* 🐛 fix: url 기본값 설정

* 💄 Design: 버튼 색 변경

* 🐛 fix: 요청시 url 수정

* Feat/cr 58/create crew page (#75)

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🐛 Fix: 같은 파일 업로드시 업로드 되지 않는 문제 해결

* 🐛 Fix: 한글입력시 21자에서 되돌아가는 문제 수정

* 🐛 Fix: 블러시 함수 충돌문제 해결

* ♻️ Refactor: 코드 리팩토링

* 🐛 Fix: 쿼리 분리

* ✨ feat: 리뷰 작성 모달 삽입

* 🐛 fix: api url 수정

* 📝 docs: mock.josn 추가

* ✨ feat: 목 api를 json server로

* 🐛 fix: 잘못된 네이밍 변경

* 🎨 style: eslint 수정

* ♻️ refactor: isModalOpened 함수 수정

* 📝 docs: id num 수정

* 🐛 fix: totalReviewCount로 이름 변경

* 📦 chore: 사용하지 않는 파일, 폴더 삭제

* 🐛 fix: url 원래대로 수정

* 🐛 fix: cors 링크 glitch로 수정

* Hotfix: env 명칭변경 (#84)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🚑 fix: 엔드포인트 변경

* 🚑 fix: 로그인 하지 않은 사용자 막기

* 🐛 fix: api 연결전 크루 id 임시로 사용

* 🐛 fix: api 연결전 크루 id 임시로 사용

* 🐛 fix: 사용하지 않는부분 주석처리

* 🐛 fix: 로그아웃 로직삭제

* Hofix/index page : 파일샘플 컴포넌트 수정 (#88)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🐛 Fix: 파일 샘플 컴포넌트 수정

* 🚨 Fix: 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

---------

Co-authored-by: HaeJungg <[email protected]>
Co-authored-by: min5x5 <[email protected]>
Co-authored-by: HaeJungg <[email protected]>
Co-authored-by: 조예은 <[email protected]>
Co-authored-by: Cho Yeeun <[email protected]>
Co-authored-by: User850413 <[email protected]>
Co-authored-by: 김민경 <[email protected]>
Co-authored-by: SOOHYEONG CHOI <[email protected]>
yulrang added a commit that referenced this pull request Nov 8, 2024
* 🗑️ chore: 안쓰는 파일 삭제

* 🐛 fix: api 유틸 간단하게 수정

* 📝 docs: 프리티어, tsconfig order 추가

* ✨ feat: 목 api 변경, 예시 코드 추가

* ✨ feat: 에러처리 추가

* ✨ feat: suspense가 가능하도록 수정

* 🎨 style: eslint changed

* ✨ Feat: auth store 추가, 💄 style: prettier import order 추가

* 💄 style: import order 수정

* 💄 design: 모달 수정

* 🚧 wip: 이전으로 되돌림

* 🐛 Fix: svgr 사용으로 src에 넣은 svg 파일을 파일 주소로 바꿈

* 💄 design: 좋아요 컴포넌트 디자인변경

* ✨ feat: 하트 컴포넌트 연결, id 추가

* 🗑️ chore: 파일 위치변경

* 🎨 style: 글씨체 선언 변경

* 🐛 fix: 디테일 페이지에서 클릭 안되게 변경, 약속 데이터 변경, 캔슬 기능삭제(완전히 삭제되는 방식)

* 🐛 fix: 데이터 변경

* 🐛 test: 없는 테스트 삭제

* 👷 Chore: svgr.d.ts 파일의 ?url 타입 설정 변경 후 Image에 쓰인 svg파일 주소 모두 수정

* 🐛 Fix: svgr 제거

* 👷 Chore: storybook의 main.ts 파일에서 svgr 관련 설정 지움

* ♻️ refactor: 리뷰 데이터 및 리뷰 타입 빼기

* ✨ feat: mock api

* ✨ Feat: login API 추가

* 🐛 fix: 달라진 데이터 타입에 따른 prop 수정

* 🧪 test: storybook 수정

* ✨ Feat: getUser API 추가

* ✨ Feat: 헤더에 토큰 추가

* 📦 chore: add 케밥 아이콘

* 💄 design: 프로필 이미지, 프로필 모은 컴포넌트 디자인 수정

* 💄 design: 크루카드 디자인 변경

* 🐛 fix: 데이터 변경

* 🐛 fix: 스토리북 오류 수정

* ✨ Feat: 헤더에 로그아웃 기능 추가

* 🐛 fix: storybook에서 isauth arg 삭제

* ✨ feat: format-date 함수 추가

* 💄 design: 바뀐 디자인 ui 적용

* 📦 package: merge 후 필요 패키지 설치

* ✨ Feat: Signup 페이지 추가, 내부의 useForm을 외부에서 선언 하도록 변경

* Feat/cr 70/my page (#43)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* ✨ Feat: 마이페이지 상단 작성

* 🎨 Style: 프리티어 적용

* 🐛 Fix: data type 수정

* 🐛 Fix: data type 수정

* 🐛 Fix: data type 수정

* 💄 design: 마이페이지에 리뷰 리스트 삽입

* 📝 docs: 이전 내용 삭제

* ✨ Feat: 회원가입 API 추가

* ✨ feat: 리뷰 점수 및 그래프 추가

* 💄 Style: 전체페이지 레이아웃 수정

* 💄 Style: header에 container 추가

* 💄 Style: mantine font pretendard 설정, ♻️ Refactor: font 리팩토링

* 💄 Style: font-pretendard 삭제

* ♻️ Refactor: theme /style로 파일 위치 이동

* ✨ feat: env 설정 추가

* 🐛 fix: 타입 수정

* 🐛 fix: 데이터 이름 수정

* ✨ feat: 목 api 추가

* 🔥 chore: 사용하지않는 레이아웃 삭제

* 🐛 fix: 데이터에 맞게 수정, 분기처리

* ♻️ refactor: profile 컴포넌트로 대체

* ✨ feat: 캐러셀 직접구현

* 🐛 fix: eslint error

* ✨ feat: 디테일 페이지 조립

* 🐛 fix: 버튼으로 변경 #53

* ♻️ Refactor: auth folder 추가

* Feat/cr 58/create crew page (#41)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Update and rename deploy.yml to trigger.yml

* Update dispatch.yml

* Update and rename trigger.yml to deploy.yml

* Update dispatch.yml

* Create dispatch_develop.yml

* Create deploy_develop.yml

* Update dispatch_develop.yml

* Update deploy_develop.yml

* Update deploy.yml

* Update deploy_develop.yml

* Update dispatch.yml

* Update dispatch_develop.yml

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🐛 Fix: 같은 파일 업로드시 업로드 되지 않는 문제 해결

* 🐛 Fix: 한글입력시 21자에서 되돌아가는 문제 수정

* 🐛 Fix: 블러시 함수 충돌문제 해결

* ✨ feat: 박스 섀도우 config 추가

* ✨ feat: 약속페이지에서 사용하는 카드 추가 #53

* 🧪 test: 스토리북 작성 #53

* ♻️ Refactor: (crew) folder 추가

* 💄 design: 크루카드소제목 변경

* 🐛 fix: 버튼 type 수정

* ✨ feat: cn 훅 추가

* 💄 design: ui 수정

* 💄 Style: auth layout ui 수정, ♻️ Refactor: layout 리팩토링

* ✨ feat: 약속 디테일 모달 연결

* 💄 design: 프로필 컴포넌트로 교체

* ✨ feat: 크루 리뷰부분 조립

* 💄 Style: 디자인에 맞게 레이아웃 UI 수정

* ✨ Feat: 로그인/회원가입 페이지 연결링크 추가

* 🐛 fix: 레이아웃 md 반응형 안되는 문제 수정

* 🚚 chore: 파일 위치 변경

* 💄 design: 레이아웃에 따라 수정

* 💄 design: 레이아웃에 따라 수정

* ✨ feat: 기본 구조 작성 #57

* 💄 design: 헤더 반응형 디자인 수정

* 💄 design: my 간격 추가

* 💄 design: mx 간격 추가

* 🐛 fix: response값에 따른 타입, 값변경

* 🐛 fix: response값에 따른 타입, 값변경

* 📝 docs: mock데이터 추가 #57

* 🐛 fix: 타입에러 수정

* ✨ feat: mock API 추가 #57

* ✨ feat: notification 추가

* ✨ feat: 데이터 삽입 #57

* Feat/cr 76/index page (#51)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Squashed commit of the following:

commit d7c6625
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 12:02:47 2024 +0900

    🐛 Fix: 동작 오류 수정

commit 0f8c22d
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:21:24 2024 +0900

    ♻️ Refactor: 중복 제거

commit 16bd2be
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:13:03 2024 +0900

    🚨 Fix: 스토리북 빌드 오류 수정

commit 0deef07
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:07:42 2024 +0900

    🎨 Style: 주석 추가, 임포트 정리

commit e5c916b
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 10:59:13 2024 +0900

    🐛 Fix: 카테고리 변경 prop 추가, 슬라이더 훅 분리

commit 1deb038
Merge: f152eb7 bd30e0f
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 10:00:04 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit f152eb7
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 20:11:47 2024 +0900

    💄 Design: 여백 수정

commit d63b562
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 14:06:18 2024 +0900

    💄 Design : 메인 카테고리 애니메이션 추가

commit 7a1270a
Merge: a8b962a 1806a4a
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 12:44:48 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit a8b962a
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 10:02:34 2024 +0900

    🚨 Fix: 린트 오류 수정

commit 3ad5b07
Merge: 0a40244 5febab3
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:59:56 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 0a40244
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:34:28 2024 +0900

    💄 Design: 폰트 적용

commit 0729cb0
Merge: 6ee5c6d 3125fb9
Author: leeyoul <[email protected]>
Date:   Thu Oct 31 09:27:33 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 6ee5c6d
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:24:22 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit d623af0
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:12:45 2024 +0900

    💚 CI: 워크플로우 수정

commit a4786e7
Merge: 4c04503 65c32f0
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:08:39 2024 +0900

    Merge branch 'main' into Feat/CR-28/MainCategory

commit 4c04503
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:07:20 2024 +0900

    🚨 Fix: 린트오류 제거

commit 46f2001
Merge: 766b28b e28e039
Author: leeyoul <[email protected]>
Date:   Thu Oct 31 09:02:56 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 766b28b
Author: Lee Youl <[email protected]>
Date:   Wed Oct 30 21:50:46 2024 +0900

    🚚 Chore: 이미지 파일 이동

commit ac3ae1e
Merge: f1241cb e02a1ca
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 19:46:43 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit f1241cb
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 19:44:57 2024 +0900

    🐛 Fix: 메인카테고리 호버 로직 수정

commit e02a1ca
Merge: 525fee9 3ea3d45
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 17:40:31 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 525fee9
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:35:04 2024 +0900

    🎨 Style: 클래스이름 순서 변경

commit 1627d6f
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:26:59 2024 +0900

    💄 Design: 디자인 맞추기

commit 4700099
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:09:13 2024 +0900

    💄 Design: 디자인 맞추기

commit 3c60268
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 16:47:29 2024 +0900

    🔧 Chore: 폰트 설정 수정

commit cdc674d
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 15:49:07 2024 +0900

    💄 Design: 디자인 맞추기

commit c0c5af4
Merge: 9f321f3 7fa5224
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 15:14:19 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 65c32f0
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:53 2024 +0900

    Update dispatch_develop.yml

commit dda1af5
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:43 2024 +0900

    Update dispatch.yml

commit a0bf193
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:32 2024 +0900

    Update deploy_develop.yml

commit 18d89ae
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:21 2024 +0900

    Update deploy.yml

commit 984cefc
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:13:17 2024 +0900

    Update deploy_develop.yml

commit 47a09ec
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:12:52 2024 +0900

    Update dispatch_develop.yml

commit 88d62de
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:50:51 2024 +0900

    Create deploy_develop.yml

commit 451c9c9
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:50:30 2024 +0900

    Create dispatch_develop.yml

commit 614934d
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:49:55 2024 +0900

    Update dispatch.yml

commit e12af5b
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:49:42 2024 +0900

    Update and rename trigger.yml to deploy.yml

commit df8d44d
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:34:05 2024 +0900

    Update dispatch.yml

commit 98a710b
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:33:35 2024 +0900

    Update and rename deploy.yml to trigger.yml

commit 9f321f3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:36:01 2024 +0900

    🐛 Fix: 타입 수정

commit 323f8d0
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:32:49 2024 +0900

    🐛 Fix: 바뀐 테일윈드 설정 반영

commit 321df95
Merge: 5b28fbe 25f04d3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:28:32 2024 +0900

    Merge branch 'Feat/CR-36/DateTimePicker' into Feat/CR-28/MainCategory

commit 5b28fbe
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:32:05 2024 +0900

    🐛 Fix: 타입 수정

commit 25f04d3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:28:49 2024 +0900

    🔧 Chore: 테일윈드 config - typo 설정 수정

commit 1593538
Merge: f35edce af4a767
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:08:59 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit f35edce
Merge: 6c0fd9a 1f62e6a
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 10:04:59 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit ab75dfe
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:02:22 2024 +0900

    🐛 Fix: 타입 수정

commit 9cd7c3d
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 09:42:40 2024 +0900

    ♻️ Refactor : 코드 리뷰 반영

commit 9dcf962
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 18:26:49 2024 +0900

    🐛 Fix: 타입 수정

commit 5075a03
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 18:21:22 2024 +0900

    🐛 Fix: 타입수정

commit 616146b
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 17:25:18 2024 +0900

    ✨ Feat: 크루찾기 상단부분 작성

commit 0af5271
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:26:59 2024 +0900

    🐛 Fix: 컴포넌트 일부 수정

commit 53e296e
Merge: 5592dd2 af4a767
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:10:47 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 5592dd2
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:05:02 2024 +0900

    💄 Design: 크루찾기 페이지 작성중

commit bd2d17e
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:32:45 2024 +0900

    💄 Design: 드롭다운 수정

commit 968c5d5
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:19:27 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' into Feat/CR-28/MainCategory

commit 7ca9626
Merge: 2f9caf5 9f6fd0c
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:17:31 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' into Feat/CR-28/MainCategory

commit 2f9caf5
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:13:44 2024 +0900

    ✨ Feat: hero-crew 추가

commit 076318a
Merge: 2cc2a15 b4f6ae1
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 08:54:30 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 6c0fd9a
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 19:38:12 2024 +0900

    🧪 Test: 스토리북 추가

commit 46be3e6
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 16:19:33 2024 +0900

    🐛 Fix: 프롭 타입 변경

commit 6d4e93f
Merge: 631dadd b4f6ae1
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 16:09:28 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit 631dadd
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 14:12:49 2024 +0900

    💄 Design: 스타일 적용

commit 762b00a
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 14:10:12 2024 +0900

    🚚 Chore: 파일 이동

commit 0a8a6b8
Merge: 4708f62 2934329
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 13:59:31 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit 2cc2a15
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 13:29:34 2024 +0900

    🐛 Fix: 스크롤 슬라이드 개수 수정

commit 5a88811
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:58:41 2024 +0900

    🔧 Chore: 추가로 정의한 설정 순서 변경

commit a8858fc
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:48:39 2024 +0900

    🎨 Style: 클래스명 적용

commit 8fd4718
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:44:59 2024 +0900

    🎨 Style: 프리티어 적용

commit c1ce5d4
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:42:50 2024 +0900

    🎨 Style: 프리티어 적용

commit fd717b4
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:41:06 2024 +0900

    🔧 Chore: tailwind config 추가

commit b3d7e21
Merge: bc47688 ec0a557
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:32:42 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit bc47688
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:31:16 2024 +0900

    💄 Design: 메인 카테고리 이미지 변경

commit ec0a557
Merge: 2c7df60 b7ccd9f
Author: leeyoul <[email protected]>
Date:   Fri Oct 25 11:27:42 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 2c7df60
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:21:12 2024 +0900

    🎨 Style: 프리티어 적용(+설정변경)

commit 55b46f1
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 10:14:11 2024 +0900

    💄 Design: 변경된 카테고리 적용중

commit 4708f62
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 20:30:27 2024 +0900

    💄 Design: 반응형 스타일 적용

commit a3f86a4
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 20:21:05 2024 +0900

    ✨ Feat: date-time-picker 컴포넌트 작성

commit 0d9671a
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:42:38 2024 +0900

    💄 Design: 간격, 폰트 스타일 변경

commit 7eedec7
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:33:48 2024 +0900

    💄 Design: 가운데 정렬 수정

commit f8961b1
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:31:19 2024 +0900

    🐛 Fix: href 수정

commit a1d2303
Merge: d10ee0f 75b18a8
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:26:43 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit 75b18a8
Merge: dbbea45 a0365d4
Author: leeyoul <[email protected]>
Date:   Thu Oct 24 10:23:46 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit d10ee0f
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 20:58:15 2024 +0900

    📝 Docs: 카테고리 데이터 변경

commit dbbea45
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:43:21 2024 +0900

    💄 Design: 반응형 스타일 수정

commit 813c0e0
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:39:41 2024 +0900

    ✨ Feat: CategoryWrap 컴포넌트 작성

commit 2694b8c
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:38:28 2024 +0900

    📝 Docs: category 데이터 변경

commit b78eee8
Merge: 6abf601 c2c30d8
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 17:41:22 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 9f6fd0c
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 17:31:00 2024 +0900

    ♻️ Refactor: dropdown data 형식 변경

commit 7139954
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:40:30 2024 +0900

    💚 CI: 빌드 오류 수정

commit b7cd35c
Merge: 22cb8b2 c2c30d8
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:32:11 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 22cb8b2
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit 059e51b
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit 5b8b587
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit d52272c
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 13:57:58 2024 +0900

    🚧 chore: prettier changed

commit 9f61d36
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit 2b184a3
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit 3f963fa
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit 8c3014b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit 4197735
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 6f5f88b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit 37055bf
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit 44e416b
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:12:08 2024 +0900

    🎨 Style: 프리티어 적용, 경로 수정

commit adad4d0
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit 3daa054
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit 6a7613c
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit 4b0e8b3
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit 3545e29
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit 45f6fc5
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit e98f4c3
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit c998ac6
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 5eee37b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit aea5f1f
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit d45f324
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 15:53:36 2024 +0900

    🎨  Style: 폴더 정리, 프리티어 적용

commit e1f1ab5
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit f48d8a0
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:49:08 2024 +0900

    🧪 test: 스토리북 추가

commit c7e6363
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:37:54 2024 +0900

    ✨ feat: custom progress bar

commit 422e984
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:06:46 2024 +0900

    👷 chore: change settings

commit dfbd868
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit bc027ff
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit e419533
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:11:45 2024 +0900

    🔧 chore: 윈도우 / 맥 둘다 활성화 할 수 있도록 설정변경

commit 9b3d74f
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 13:57:58 2024 +0900

    🚧 chore: prettier changed

commit c315c7d
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit d9d3a40
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:29 2024 +0900

    👷 chore: import 변경, 빌드에러 수정

commit 44fe36f
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:53:52 2024 +0900

    🔧 chore: 삭제된 import order 추가

commit 0db6627
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit f7223ed
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit 8db0768
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:44:31 2024 +0900

    🔧 chore: 프리티어 설정 변경

commit bcc0ac0
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit 7363c78
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:30 2024 +0900

    🧪 test: 프로필 컴포넌트 스토리북 작성

commit a29ae80
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 79207a2
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit 9737ca9
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit cd2a3d5
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:21:13 2024 +0900

    👷 chore: stories 테일윈드 config 추가

commit a14376a
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:20:03 2024 +0900

    👷 chore: next 이미지 처리 위해 모든 도메인 허용

commit 6abf601
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 14:27:20 2024 +0900

    ✨ Feat: MainCategory 컴포넌트 작성

commit 2af3c8d
Author: youl <[email protected]>
Date:   Wed Oct 23 11:56:56 2024 +0900

    ✨ Feat: 초안 작성

commit a15221b
Author: youl <[email protected]>
Date:   Wed Oct 23 11:20:17 2024 +0900

    💄 Design: 폰트 적용, 간격 수정

commit 7875412
Author: youl <[email protected]>
Date:   Wed Oct 23 11:01:58 2024 +0900

    💄 Design: 디자인에 맞게 스타일 수정

commit 3766ab9
Merge: 6663b04 f67c5b9
Author: youl <[email protected]>
Date:   Wed Oct 23 09:35:44 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-10/DropDown

commit 6663b04
Author: youl <[email protected]>
Date:   Wed Oct 23 09:35:28 2024 +0900

    📝 Docs: 스토리북 분류 수정

commit f67c5b9
Merge: 03eca63 d122096
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 09:31:06 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 03eca63
Author: youl <[email protected]>
Date:   Wed Oct 23 09:27:55 2024 +0900

    💄 Design: 바뀐 디자인에 맞게 스타일 수정

commit 6452b93
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:53:29 2024 +0900

    ♻️ Refactor: Remove unused import in page.tsx and fix file name case in drop-down.stories.tsx

commit d854861
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:50:35 2024 +0900

    🚧 Chore: 컴포넌트 파일명 변경, eol 설정 변경

commit 92e9d77
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:18:32 2024 +0900

    📝 Docs : add docs

commit 69f2e7e
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 10:12:31 2024 +0900

    🚧 Chore: eol 설정 변경

commit df7c771
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 10:08:38 2024 +0900

    🚧 Chore: import order 문제 수정

commit 098babd
Merge: edbfe3f c58486f
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 19:19:04 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-10/DropDown

commit edbfe3f
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 19:18:21 2024 +0900

    🔧 chore: update prettier config

commit c58486f
Merge: 7388b34 0365ddb
Author: leeyoul <[email protected]>
Date:   Thu Oct 17 18:36:16 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 7388b34
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 18:27:37 2024 +0900

    🎨 prettier

commit c24f8b7
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 18:22:35 2024 +0900

    ✨ feat: DropDown - variant 추가

commit 970fddf
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:35:19 2024 +0900

    ✅ test: action test 추가

commit b5d3e63
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:18:56 2024 +0900

    📝 docs: storybook docs 추가, chore: PR 템플릿 주소 수정

commit 55ea20c
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:08:19 2024 +0900

    ✨ feat: DropDown 컴포넌트 제작, chore: storybook config 수정, public 폴더 추가

commit 423c5a0
Merge: cb5abbf 39d3c82
Author: leeyoul <[email protected]>
Date:   Thu Oct 17 13:42:43 2024 +0900

    Merge pull request #2 from CodeitFESI4-Team1/develop

    🔧chore: mantine UI + storybook setting

* ♻️ Refactor: json-sever 로 패칭

* 💄 Design: 태블릿에서 1열로 보이도록 수정

* 🔥 Fix: 메인페이지 날짜필터 빼기

* 🐛 Fix: 다시 mockData로 연결

* 🐛 Fix: 링크 수정

* 💄 Design: 레이아웃 분리, 헤더 주석해제

* 🚚 Chore: 파일 이동, 정리

* 💄 Design: fade 애니메이션 적용

* 🎨 Style: 린트 프리티어 적용

* 💄 Design: 검색창 디자인 수정

* 🎨 Style: 린트 프리티어 적용

* ✨ feat: 확인 삭제 모달 추가

* 💄 design: max 1200으로 수정, container 삭제

* 🎨 style: eslint changed

* 🐛 Fix: anchor 를 Link로 변경

* 📦 chore: 패키지 설치

* ✨ feat: react-toastify를 이용해 toast 구현

* 💄 design: UI 작업 #57

* 🐛 fix: (crew) 폴더 안으로 이동

* 🔥 chore: git static 폴더 삭제

* 🐛 fix: 파일위치 재설정

* 🐛 fix: import 오류 해결

* 🐛 fix: 빌드 오류 -> import문 수정

* 🐛 fix: eslint changed

* Feat/cr 71/create gathering modal (#52)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Update and rename deploy.yml to trigger.yml

* Update dispatch.yml

* Update and rename trigger.yml to deploy.yml

* Update dispatch.yml

* Create dispatch_develop.yml

* Create deploy_develop.yml

* Update dispatch_develop.yml

* Update deploy_develop.yml

* Update deploy.yml

* Update deploy_develop.yml

* Update dispatch.yml

* Update dispatch_develop.yml

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 약속 만들기 모달 초안 작성

* 🐛 Fix: 날짜 초기값 설정, 필수값 수정

* 🐛 Fix: 파일정리, onClose Prop 추가

* 🧪 Test: 스토리북 추가

* 🔧 Chore: tailwind config 설정 오타 수정

* 🐛 Fix: 타입 이름 수정

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 린트오류 수정, 스크롤바 수정

* 🚨 Fix: 빌드오류 수정

* 🎨 Style: 린트프리티어 적용

* 🚨 Fix: 린트 적용용

* 💄 Design: 디자인 맞추고 필요없는 파일 삭제

* 🎨 Style: 코드 정리

* 🐛 fix: profiles에 전달하는 prop 수정

* 🔥 fix: 사용하지 않는 테스트 주석처리

* ✏️ fix: 페이지네이션으로 변경하면서 타입 변경

* 📝 docs: 목데이터 rate 변경

* 💄 design: 페이지네이션 디자인 변경

* 🎨 style: eslint changed

* 🐛 fix: 프로필에 이미지 전달안되는 문제 수정 안쓰는 import 제거

* ✨ feat: rate 변경

* 🐛 fix: 크루카드 경로수정

* ✨ feat: 크루 리뷰 데이터 목 api 페이지네이션

* ✨ feat: 리뷰리스트 페이지네이션

* 🧪 test: 스토리북 추가

* 🐛 fix: 파일 위치 변경, 네이밍 변경

* 📝 docs: 데이터 일부 변경

* 📝 docs: 주석 추가

* 🐛 fix:  import 변경

* ✨ feat: 목 데이터 가공

* 💄 design: 스타일 변경

* ✨ feat: 크루 리뷰 조립

* 🐛 fix: 프로필모음 변경에 따른 타입, 코드 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 💄 design: reviewList 삽입

* 🚑 fix: 이름 수정

* 🚑 Fix: 변경요청

* 🔥 Remove: 옛날 develop 파일 삭제

* Feat/56/my crew page (#58)

* Feat: 나의 크루 페이지 초안 작성

* 🚨 Fix: 린트프리티어 적용

* 🚨 Fix: 빌드 오류 수정

* Update crew-card-list.tsx

* 🚨 Fix: 빌드 오류 제거

* 🚚 Chore: 파일 이동

* 💄 Design: PC에서만 2열로 보이도록 수정

* 💄 Design: 패딩 추가, 파일 이동

* 💄 Design : 생성페이지 패딩 추가

* ✨ Feat: 로더 적용

* 🎨 Style: 린트 프리티어 적용

* 💚 CI: 워크플로우 수정

* 🚨 Fix: 절대경로로 수정

* Fix: 빌드에러 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 타입 오류 수정

* 🐛 fix: 경로수정

* ✨ feat: 약속 만들기 모달 연결

* 🐛 Fix: 빌드 오류 수정

* ✨ feat: 확인 취소 모달 연결

* 🐛 fix: 오타 수정

* Feat/60/my-gathering-page (#73)

* ✨ Feat: my-gathering 버튼 추가 및 하위 컴포넌트 분리

* ✨ Feat: 하위 페이지로 분리

* ✨ Feat: GatheringList 추가

* 💄 Style: gatheringlist max-w 삭제

* 💄 Style: 전체 레이아웃에 flex-1 추가

* ✨ Feat: gatheringListWithDate 컴포넌트 추가

* 💄 Style: gatheringListWithDate UI 수정

* ✨ Feat: popoverCalendar 추가, 🐛 Fix: card 모바일환경 이미지 사이즈 수정

* ✨ Feat: 참여한 모임 페이지 추가

* ✨ Feat: gathering Detail Modal API 추가

* 🐛 fix: 경로수정

* 🐛 fix: prettier error 수정

* 🐛 fix: api dummydata로 임시 수정

* 🚨 Fix: 워크플로우 수정

* 💄 design: 리스트 삽입 및 디자인 수정

* 🐛 fix: 타입이름 수정 #67

* 💄 design: UI 수정 #67

* 🐛 fix: cors url 추가

* 🐛 fix: 환경변수로 재설정

* 🐛 fix: url 기본값 설정

* 💄 Design: 버튼 색 변경

* 🐛 fix: 요청시 url 수정

* Feat/cr 58/create crew page (#75)

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🐛 Fix: 같은 파일 업로드시 업로드 되지 않는 문제 해결

* 🐛 Fix: 한글입력시 21자에서 되돌아가는 문제 수정

* 🐛 Fix: 블러시 함수 충돌문제 해결

* ♻️ Refactor: 코드 리팩토링

* 🐛 Fix: 쿼리 분리

* ✨ feat: 리뷰 작성 모달 삽입

* 🐛 fix: api url 수정

* 📝 docs: mock.josn 추가

* ✨ feat: 목 api를 json server로

* 🐛 fix: 잘못된 네이밍 변경

* 🎨 style: eslint 수정

* ♻️ refactor: isModalOpened 함수 수정

* 📝 docs: id num 수정

* 🐛 fix: totalReviewCount로 이름 변경

* 📦 chore: 사용하지 않는 파일, 폴더 삭제

* 🐛 fix: url 원래대로 수정

* 🐛 fix: cors 링크 glitch로 수정

* Hotfix: env 명칭변경 (#84)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🚑 fix: 엔드포인트 변경

* 🚑 fix: 로그인 하지 않은 사용자 막기

* 🐛 fix: api 연결전 크루 id 임시로 사용

* 🐛 fix: api 연결전 크루 id 임시로 사용

* 🐛 fix: 사용하지 않는부분 주석처리

* 🐛 fix: 로그아웃 로직삭제

* Hofix/index page : 파일샘플 컴포넌트 수정 (#88)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🐛 Fix: 파일 샘플 컴포넌트 수정

* 🚨 Fix: 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* Hofix/index page (#91)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🐛 Fix: 파일 샘플 컴포넌트 수정

* 🚨 Fix: 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🐛 Fix: 폼 오류 제거

* 📝 Docs: readme 추가

* Docs : 리드미 수정

* 🐛 Fix: 드롭다운 에러메시지 오류 수정

* 🐛 Fix: 폼 초기값 수정

* Update create-gathering.tsx

---------

Co-authored-by: HaeJungg <[email protected]>
Co-authored-by: min5x5 <[email protected]>
Co-authored-by: HaeJungg <[email protected]>
Co-authored-by: 조예은 <[email protected]>
Co-authored-by: Cho Yeeun <[email protected]>
Co-authored-by: User850413 <[email protected]>
Co-authored-by: 김민경 <[email protected]>
Co-authored-by: SOOHYEONG CHOI <[email protected]>
yulrang added a commit that referenced this pull request Nov 11, 2024
* 📝 docs: 프리티어, tsconfig order 추가

* ✨ feat: 목 api 변경, 예시 코드 추가

* ✨ feat: 에러처리 추가

* ✨ feat: suspense가 가능하도록 수정

* 🎨 style: eslint changed

* ✨ Feat: auth store 추가, 💄 style: prettier import order 추가

* 💄 style: import order 수정

* 💄 design: 모달 수정

* 🚧 wip: 이전으로 되돌림

* 🐛 Fix: svgr 사용으로 src에 넣은 svg 파일을 파일 주소로 바꿈

* 💄 design: 좋아요 컴포넌트 디자인변경

* ✨ feat: 하트 컴포넌트 연결, id 추가

* 🗑️ chore: 파일 위치변경

* 🎨 style: 글씨체 선언 변경

* 🐛 fix: 디테일 페이지에서 클릭 안되게 변경, 약속 데이터 변경, 캔슬 기능삭제(완전히 삭제되는 방식)

* 🐛 fix: 데이터 변경

* 🐛 test: 없는 테스트 삭제

* 👷 Chore: svgr.d.ts 파일의 ?url 타입 설정 변경 후 Image에 쓰인 svg파일 주소 모두 수정

* 🐛 Fix: svgr 제거

* 👷 Chore: storybook의 main.ts 파일에서 svgr 관련 설정 지움

* ♻️ refactor: 리뷰 데이터 및 리뷰 타입 빼기

* ✨ feat: mock api

* ✨ Feat: login API 추가

* 🐛 fix: 달라진 데이터 타입에 따른 prop 수정

* 🧪 test: storybook 수정

* ✨ Feat: getUser API 추가

* ✨ Feat: 헤더에 토큰 추가

* 📦 chore: add 케밥 아이콘

* 💄 design: 프로필 이미지, 프로필 모은 컴포넌트 디자인 수정

* 💄 design: 크루카드 디자인 변경

* 🐛 fix: 데이터 변경

* 🐛 fix: 스토리북 오류 수정

* ✨ Feat: 헤더에 로그아웃 기능 추가

* 🐛 fix: storybook에서 isauth arg 삭제

* ✨ feat: format-date 함수 추가

* 💄 design: 바뀐 디자인 ui 적용

* 📦 package: merge 후 필요 패키지 설치

* ✨ Feat: Signup 페이지 추가, 내부의 useForm을 외부에서 선언 하도록 변경

* Feat/cr 70/my page (#43)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* ✨ Feat: 마이페이지 상단 작성

* 🎨 Style: 프리티어 적용

* 🐛 Fix: data type 수정

* 🐛 Fix: data type 수정

* 🐛 Fix: data type 수정

* 💄 design: 마이페이지에 리뷰 리스트 삽입

* 📝 docs: 이전 내용 삭제

* ✨ Feat: 회원가입 API 추가

* ✨ feat: 리뷰 점수 및 그래프 추가

* 💄 Style: 전체페이지 레이아웃 수정

* 💄 Style: header에 container 추가

* 💄 Style: mantine font pretendard 설정, ♻️ Refactor: font 리팩토링

* 💄 Style: font-pretendard 삭제

* ♻️ Refactor: theme /style로 파일 위치 이동

* ✨ feat: env 설정 추가

* 🐛 fix: 타입 수정

* 🐛 fix: 데이터 이름 수정

* ✨ feat: 목 api 추가

* 🔥 chore: 사용하지않는 레이아웃 삭제

* 🐛 fix: 데이터에 맞게 수정, 분기처리

* ♻️ refactor: profile 컴포넌트로 대체

* ✨ feat: 캐러셀 직접구현

* 🐛 fix: eslint error

* ✨ feat: 디테일 페이지 조립

* 🐛 fix: 버튼으로 변경 #53

* ♻️ Refactor: auth folder 추가

* Feat/cr 58/create crew page (#41)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Update and rename deploy.yml to trigger.yml

* Update dispatch.yml

* Update and rename trigger.yml to deploy.yml

* Update dispatch.yml

* Create dispatch_develop.yml

* Create deploy_develop.yml

* Update dispatch_develop.yml

* Update deploy_develop.yml

* Update deploy.yml

* Update deploy_develop.yml

* Update dispatch.yml

* Update dispatch_develop.yml

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🐛 Fix: 같은 파일 업로드시 업로드 되지 않는 문제 해결

* 🐛 Fix: 한글입력시 21자에서 되돌아가는 문제 수정

* 🐛 Fix: 블러시 함수 충돌문제 해결

* ✨ feat: 박스 섀도우 config 추가

* ✨ feat: 약속페이지에서 사용하는 카드 추가 #53

* 🧪 test: 스토리북 작성 #53

* ♻️ Refactor: (crew) folder 추가

* 💄 design: 크루카드소제목 변경

* 🐛 fix: 버튼 type 수정

* ✨ feat: cn 훅 추가

* 💄 design: ui 수정

* 💄 Style: auth layout ui 수정, ♻️ Refactor: layout 리팩토링

* ✨ feat: 약속 디테일 모달 연결

* 💄 design: 프로필 컴포넌트로 교체

* ✨ feat: 크루 리뷰부분 조립

* 💄 Style: 디자인에 맞게 레이아웃 UI 수정

* ✨ Feat: 로그인/회원가입 페이지 연결링크 추가

* 🐛 fix: 레이아웃 md 반응형 안되는 문제 수정

* 🚚 chore: 파일 위치 변경

* 💄 design: 레이아웃에 따라 수정

* 💄 design: 레이아웃에 따라 수정

* ✨ feat: 기본 구조 작성 #57

* 💄 design: 헤더 반응형 디자인 수정

* 💄 design: my 간격 추가

* 💄 design: mx 간격 추가

* 🐛 fix: response값에 따른 타입, 값변경

* 🐛 fix: response값에 따른 타입, 값변경

* 📝 docs: mock데이터 추가 #57

* 🐛 fix: 타입에러 수정

* ✨ feat: mock API 추가 #57

* ✨ feat: notification 추가

* ✨ feat: 데이터 삽입 #57

* Feat/cr 76/index page (#51)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Squashed commit of the following:

commit d7c6625
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 12:02:47 2024 +0900

    🐛 Fix: 동작 오류 수정

commit 0f8c22d
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:21:24 2024 +0900

    ♻️ Refactor: 중복 제거

commit 16bd2be
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:13:03 2024 +0900

    🚨 Fix: 스토리북 빌드 오류 수정

commit 0deef07
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 11:07:42 2024 +0900

    🎨 Style: 주석 추가, 임포트 정리

commit e5c916b
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 10:59:13 2024 +0900

    🐛 Fix: 카테고리 변경 prop 추가, 슬라이더 훅 분리

commit 1deb038
Merge: f152eb7 bd30e0f
Author: Lee Youl <[email protected]>
Date:   Mon Nov 4 10:00:04 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit f152eb7
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 20:11:47 2024 +0900

    💄 Design: 여백 수정

commit d63b562
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 14:06:18 2024 +0900

    💄 Design : 메인 카테고리 애니메이션 추가

commit 7a1270a
Merge: a8b962a 1806a4a
Author: Lee Youl <[email protected]>
Date:   Sun Nov 3 12:44:48 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit a8b962a
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 10:02:34 2024 +0900

    🚨 Fix: 린트 오류 수정

commit 3ad5b07
Merge: 0a40244 5febab3
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:59:56 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 0a40244
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:34:28 2024 +0900

    💄 Design: 폰트 적용

commit 0729cb0
Merge: 6ee5c6d 3125fb9
Author: leeyoul <[email protected]>
Date:   Thu Oct 31 09:27:33 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 6ee5c6d
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:24:22 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit d623af0
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:12:45 2024 +0900

    💚 CI: 워크플로우 수정

commit a4786e7
Merge: 4c04503 65c32f0
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:08:39 2024 +0900

    Merge branch 'main' into Feat/CR-28/MainCategory

commit 4c04503
Author: Lee Youl <[email protected]>
Date:   Thu Oct 31 09:07:20 2024 +0900

    🚨 Fix: 린트오류 제거

commit 46f2001
Merge: 766b28b e28e039
Author: leeyoul <[email protected]>
Date:   Thu Oct 31 09:02:56 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 766b28b
Author: Lee Youl <[email protected]>
Date:   Wed Oct 30 21:50:46 2024 +0900

    🚚 Chore: 이미지 파일 이동

commit ac3ae1e
Merge: f1241cb e02a1ca
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 19:46:43 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit f1241cb
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 19:44:57 2024 +0900

    🐛 Fix: 메인카테고리 호버 로직 수정

commit e02a1ca
Merge: 525fee9 3ea3d45
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 17:40:31 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 525fee9
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:35:04 2024 +0900

    🎨 Style: 클래스이름 순서 변경

commit 1627d6f
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:26:59 2024 +0900

    💄 Design: 디자인 맞추기

commit 4700099
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 17:09:13 2024 +0900

    💄 Design: 디자인 맞추기

commit 3c60268
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 16:47:29 2024 +0900

    🔧 Chore: 폰트 설정 수정

commit cdc674d
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 15:49:07 2024 +0900

    💄 Design: 디자인 맞추기

commit c0c5af4
Merge: 9f321f3 7fa5224
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 15:14:19 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 65c32f0
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:53 2024 +0900

    Update dispatch_develop.yml

commit dda1af5
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:43 2024 +0900

    Update dispatch.yml

commit a0bf193
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:32 2024 +0900

    Update deploy_develop.yml

commit 18d89ae
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:31:21 2024 +0900

    Update deploy.yml

commit 984cefc
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:13:17 2024 +0900

    Update deploy_develop.yml

commit 47a09ec
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 13:12:52 2024 +0900

    Update dispatch_develop.yml

commit 88d62de
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:50:51 2024 +0900

    Create deploy_develop.yml

commit 451c9c9
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:50:30 2024 +0900

    Create dispatch_develop.yml

commit 614934d
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:49:55 2024 +0900

    Update dispatch.yml

commit e12af5b
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:49:42 2024 +0900

    Update and rename trigger.yml to deploy.yml

commit df8d44d
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:34:05 2024 +0900

    Update dispatch.yml

commit 98a710b
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 12:33:35 2024 +0900

    Update and rename deploy.yml to trigger.yml

commit 9f321f3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:36:01 2024 +0900

    🐛 Fix: 타입 수정

commit 323f8d0
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:32:49 2024 +0900

    🐛 Fix: 바뀐 테일윈드 설정 반영

commit 321df95
Merge: 5b28fbe 25f04d3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 11:28:32 2024 +0900

    Merge branch 'Feat/CR-36/DateTimePicker' into Feat/CR-28/MainCategory

commit 5b28fbe
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:32:05 2024 +0900

    🐛 Fix: 타입 수정

commit 25f04d3
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:28:49 2024 +0900

    🔧 Chore: 테일윈드 config - typo 설정 수정

commit 1593538
Merge: f35edce af4a767
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:08:59 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit f35edce
Merge: 6c0fd9a 1f62e6a
Author: leeyoul <[email protected]>
Date:   Tue Oct 29 10:04:59 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit ab75dfe
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 10:02:22 2024 +0900

    🐛 Fix: 타입 수정

commit 9cd7c3d
Author: Lee Youl <[email protected]>
Date:   Tue Oct 29 09:42:40 2024 +0900

    ♻️ Refactor : 코드 리뷰 반영

commit 9dcf962
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 18:26:49 2024 +0900

    🐛 Fix: 타입 수정

commit 5075a03
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 18:21:22 2024 +0900

    🐛 Fix: 타입수정

commit 616146b
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 17:25:18 2024 +0900

    ✨ Feat: 크루찾기 상단부분 작성

commit 0af5271
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:26:59 2024 +0900

    🐛 Fix: 컴포넌트 일부 수정

commit 53e296e
Merge: 5592dd2 af4a767
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:10:47 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 5592dd2
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 14:05:02 2024 +0900

    💄 Design: 크루찾기 페이지 작성중

commit bd2d17e
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:32:45 2024 +0900

    💄 Design: 드롭다운 수정

commit 968c5d5
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:19:27 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' into Feat/CR-28/MainCategory

commit 7ca9626
Merge: 2f9caf5 9f6fd0c
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:17:31 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' into Feat/CR-28/MainCategory

commit 2f9caf5
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 11:13:44 2024 +0900

    ✨ Feat: hero-crew 추가

commit 076318a
Merge: 2cc2a15 b4f6ae1
Author: Lee Youl <[email protected]>
Date:   Mon Oct 28 08:54:30 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 6c0fd9a
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 19:38:12 2024 +0900

    🧪 Test: 스토리북 추가

commit 46be3e6
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 16:19:33 2024 +0900

    🐛 Fix: 프롭 타입 변경

commit 6d4e93f
Merge: 631dadd b4f6ae1
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 16:09:28 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit 631dadd
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 14:12:49 2024 +0900

    💄 Design: 스타일 적용

commit 762b00a
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 14:10:12 2024 +0900

    🚚 Chore: 파일 이동

commit 0a8a6b8
Merge: 4708f62 2934329
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 13:59:31 2024 +0900

    Merge branch 'develop' into Feat/CR-36/DateTimePicker

commit 2cc2a15
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 13:29:34 2024 +0900

    🐛 Fix: 스크롤 슬라이드 개수 수정

commit 5a88811
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:58:41 2024 +0900

    🔧 Chore: 추가로 정의한 설정 순서 변경

commit a8858fc
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:48:39 2024 +0900

    🎨 Style: 클래스명 적용

commit 8fd4718
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:44:59 2024 +0900

    🎨 Style: 프리티어 적용

commit c1ce5d4
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:42:50 2024 +0900

    🎨 Style: 프리티어 적용

commit fd717b4
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:41:06 2024 +0900

    🔧 Chore: tailwind config 추가

commit b3d7e21
Merge: bc47688 ec0a557
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:32:42 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit bc47688
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:31:16 2024 +0900

    💄 Design: 메인 카테고리 이미지 변경

commit ec0a557
Merge: 2c7df60 b7ccd9f
Author: leeyoul <[email protected]>
Date:   Fri Oct 25 11:27:42 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 2c7df60
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 11:21:12 2024 +0900

    🎨 Style: 프리티어 적용(+설정변경)

commit 55b46f1
Author: Lee Youl <[email protected]>
Date:   Fri Oct 25 10:14:11 2024 +0900

    💄 Design: 변경된 카테고리 적용중

commit 4708f62
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 20:30:27 2024 +0900

    💄 Design: 반응형 스타일 적용

commit a3f86a4
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 20:21:05 2024 +0900

    ✨ Feat: date-time-picker 컴포넌트 작성

commit 0d9671a
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:42:38 2024 +0900

    💄 Design: 간격, 폰트 스타일 변경

commit 7eedec7
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:33:48 2024 +0900

    💄 Design: 가운데 정렬 수정

commit f8961b1
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:31:19 2024 +0900

    🐛 Fix: href 수정

commit a1d2303
Merge: d10ee0f 75b18a8
Author: Lee Youl <[email protected]>
Date:   Thu Oct 24 10:26:43 2024 +0900

    Merge branch 'Feat/CR-28/MainCategory' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-28/MainCategory

commit 75b18a8
Merge: dbbea45 a0365d4
Author: leeyoul <[email protected]>
Date:   Thu Oct 24 10:23:46 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit d10ee0f
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 20:58:15 2024 +0900

    📝 Docs: 카테고리 데이터 변경

commit dbbea45
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:43:21 2024 +0900

    💄 Design: 반응형 스타일 수정

commit 813c0e0
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:39:41 2024 +0900

    ✨ Feat: CategoryWrap 컴포넌트 작성

commit 2694b8c
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 18:38:28 2024 +0900

    📝 Docs: category 데이터 변경

commit b78eee8
Merge: 6abf601 c2c30d8
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 17:41:22 2024 +0900

    Merge branch 'develop' into Feat/CR-28/MainCategory

commit 9f6fd0c
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 17:31:00 2024 +0900

    ♻️ Refactor: dropdown data 형식 변경

commit 7139954
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:40:30 2024 +0900

    💚 CI: 빌드 오류 수정

commit b7cd35c
Merge: 22cb8b2 c2c30d8
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:32:11 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 22cb8b2
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit 059e51b
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit 5b8b587
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit d52272c
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 13:57:58 2024 +0900

    🚧 chore: prettier changed

commit 9f61d36
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit 2b184a3
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit 3f963fa
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit 8c3014b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit 4197735
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 6f5f88b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit 37055bf
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit 44e416b
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 16:12:08 2024 +0900

    🎨 Style: 프리티어 적용, 경로 수정

commit adad4d0
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit 3daa054
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit 6a7613c
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit 4b0e8b3
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit 3545e29
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit 45f6fc5
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit e98f4c3
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit c998ac6
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 5eee37b
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit aea5f1f
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit d45f324
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 15:53:36 2024 +0900

    🎨  Style: 폴더 정리, 프리티어 적용

commit e1f1ab5
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 15:42:13 2024 +0900

    Feat/cr 23/internal category (#7)

    * ✨ Feat: InternalCategory 추가

    * 📝 Docs: story 추가, 스크롤 동작 버그 수정, 화살표 토글 동작 버그 수정

    * 🐛 Fix: 스크롤 동작 버그 수정

    * 🚧 chore: mantine 버전 원래대로

    * 💚 Fix: 빌드 오류 수정

    * 💚 : 빌드 오류 수정

    * 💚 Fix : 빌드 오류 수정

    * 🐛 Fix : breakpoint 커스텀 theme에서 가져오도록 수정

    * 💄 Design: 바뀐 디자인에 맞게 수정, 반응형 스타일 적용

    * 💚 CI : 빌드 오류 수정

    * 📝 Docs: category data 변경

    * 💄 Design: 스타일 수정

    * ♻️ Refactor: 타입 분리

    * 🚧 Chore: 임포트오더에 types 폴더 추가

    * 👷 chore: next 이미지 처리 위해 모든 도메인 허용

    * 👷 chore: stories 테일윈드 config 추가

    * 👷 chore: 글로벌 css 위치이동, resetcss 작성

    * 👷 chore: 스토리북에 테일윈드 추가

    * ✨ feat: 프로필 컴포넌트 추가

    * 🧪 test: 프로필 컴포넌트 스토리북 작성

    * 🎨 style: 주석추가

    * 🎨 style: 컴포넌트 삭제

    * 🔧 chore: 프리티어 설정 변경

    * 👷 chore: 프리티어 설정 변경, 변경된 import

    * 👷 chore: 파일 위치 변경, git keep 삭제

    * 🔧 chore: 삭제된 import order 추가

    * 👷 chore: import 변경, 빌드에러 수정

    * 🎨 design: import 수정

    * 🚧 chore: prettier changed

    * 🐛 fix: import 수정

    * 🐛 fix: prettier changed

    * 👷 chore: change settings

    * ✨ feat: custom progress bar

    * 🧪 test: 스토리북 추가

    * 🚧 Chore: 폴더 정리

    * 🚧 Chore: globals.css 위치 변경, 프리티어 적용

    * 🚧 Chore: 프리티어 적용

    * 📝 Docs: 주석 변경

    * 🚧 Chore: husky no-cache 설정

    * 🚧 Chore: 프리티어 설정 빠진것 추가

    * 🎨 Style: 프리티어 적용

    ---------

    Co-authored-by: HaeJungg <[email protected]>

commit f48d8a0
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:49:08 2024 +0900

    🧪 test: 스토리북 추가

commit c7e6363
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:37:54 2024 +0900

    ✨ feat: custom progress bar

commit 422e984
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 15:06:46 2024 +0900

    👷 chore: change settings

commit dfbd868
Author: HaeJungg <[email protected]>
Date:   Tue Oct 22 11:10:05 2024 +0900

    🐛 fix: prettier changed

commit bc027ff
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:17:20 2024 +0900

    🐛 fix: import 수정

commit e419533
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 15:11:45 2024 +0900

    🔧 chore: 윈도우 / 맥 둘다 활성화 할 수 있도록 설정변경

commit 9b3d74f
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 13:57:58 2024 +0900

    🚧 chore: prettier changed

commit c315c7d
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:56 2024 +0900

    🎨 design: import 수정

commit d9d3a40
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 10:08:29 2024 +0900

    👷 chore: import 변경, 빌드에러 수정

commit 44fe36f
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:53:52 2024 +0900

    🔧 chore: 삭제된 import order 추가

commit 0db6627
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:48:59 2024 +0900

    👷 chore: 파일 위치 변경, git keep 삭제

commit f7223ed
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:46:34 2024 +0900

    👷 chore: 프리티어 설정 변경, 변경된 import

commit 8db0768
Author: HaeJungg <[email protected]>
Date:   Fri Oct 18 09:44:31 2024 +0900

    🔧 chore: 프리티어 설정 변경

commit bcc0ac0
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:28:21 2024 +0900

    🎨 style: 주석추가

commit 7363c78
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:30 2024 +0900

    🧪 test: 프로필 컴포넌트 스토리북 작성

commit a29ae80
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:27:10 2024 +0900

    ✨ feat: 프로필 컴포넌트 추가

commit 79207a2
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:24:15 2024 +0900

    👷 chore: 스토리북에 테일윈드 추가

commit 9737ca9
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:22:17 2024 +0900

    👷 chore: 글로벌 css 위치이동, resetcss 작성

commit cd2a3d5
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:21:13 2024 +0900

    👷 chore: stories 테일윈드 config 추가

commit a14376a
Author: HaeJungg <[email protected]>
Date:   Thu Oct 17 18:20:03 2024 +0900

    👷 chore: next 이미지 처리 위해 모든 도메인 허용

commit 6abf601
Author: Lee Youl <[email protected]>
Date:   Wed Oct 23 14:27:20 2024 +0900

    ✨ Feat: MainCategory 컴포넌트 작성

commit 2af3c8d
Author: youl <[email protected]>
Date:   Wed Oct 23 11:56:56 2024 +0900

    ✨ Feat: 초안 작성

commit a15221b
Author: youl <[email protected]>
Date:   Wed Oct 23 11:20:17 2024 +0900

    💄 Design: 폰트 적용, 간격 수정

commit 7875412
Author: youl <[email protected]>
Date:   Wed Oct 23 11:01:58 2024 +0900

    💄 Design: 디자인에 맞게 스타일 수정

commit 3766ab9
Merge: 6663b04 f67c5b9
Author: youl <[email protected]>
Date:   Wed Oct 23 09:35:44 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-10/DropDown

commit 6663b04
Author: youl <[email protected]>
Date:   Wed Oct 23 09:35:28 2024 +0900

    📝 Docs: 스토리북 분류 수정

commit f67c5b9
Merge: 03eca63 d122096
Author: leeyoul <[email protected]>
Date:   Wed Oct 23 09:31:06 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 03eca63
Author: youl <[email protected]>
Date:   Wed Oct 23 09:27:55 2024 +0900

    💄 Design: 바뀐 디자인에 맞게 스타일 수정

commit 6452b93
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:53:29 2024 +0900

    ♻️ Refactor: Remove unused import in page.tsx and fix file name case in drop-down.stories.tsx

commit d854861
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:50:35 2024 +0900

    🚧 Chore: 컴포넌트 파일명 변경, eol 설정 변경

commit 92e9d77
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 11:18:32 2024 +0900

    📝 Docs : add docs

commit 69f2e7e
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 10:12:31 2024 +0900

    🚧 Chore: eol 설정 변경

commit df7c771
Author: Lee Youl <[email protected]>
Date:   Fri Oct 18 10:08:38 2024 +0900

    🚧 Chore: import order 문제 수정

commit 098babd
Merge: edbfe3f c58486f
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 19:19:04 2024 +0900

    Merge branch 'Feat/CR-10/DropDown' of https://github.com/CodeitFESI4-Team1/Team-1-Codeit into Feat/CR-10/DropDown

commit edbfe3f
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 19:18:21 2024 +0900

    🔧 chore: update prettier config

commit c58486f
Merge: 7388b34 0365ddb
Author: leeyoul <[email protected]>
Date:   Thu Oct 17 18:36:16 2024 +0900

    Merge branch 'develop' into Feat/CR-10/DropDown

commit 7388b34
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 18:27:37 2024 +0900

    🎨 prettier

commit c24f8b7
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 18:22:35 2024 +0900

    ✨ feat: DropDown - variant 추가

commit 970fddf
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:35:19 2024 +0900

    ✅ test: action test 추가

commit b5d3e63
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:18:56 2024 +0900

    📝 docs: storybook docs 추가, chore: PR 템플릿 주소 수정

commit 55ea20c
Author: Lee Youl <[email protected]>
Date:   Thu Oct 17 16:08:19 2024 +0900

    ✨ feat: DropDown 컴포넌트 제작, chore: storybook config 수정, public 폴더 추가

commit 423c5a0
Merge: cb5abbf 39d3c82
Author: leeyoul <[email protected]>
Date:   Thu Oct 17 13:42:43 2024 +0900

    Merge pull request #2 from CodeitFESI4-Team1/develop

    🔧chore: mantine UI + storybook setting

* ♻️ Refactor: json-sever 로 패칭

* 💄 Design: 태블릿에서 1열로 보이도록 수정

* 🔥 Fix: 메인페이지 날짜필터 빼기

* 🐛 Fix: 다시 mockData로 연결

* 🐛 Fix: 링크 수정

* 💄 Design: 레이아웃 분리, 헤더 주석해제

* 🚚 Chore: 파일 이동, 정리

* 💄 Design: fade 애니메이션 적용

* 🎨 Style: 린트 프리티어 적용

* 💄 Design: 검색창 디자인 수정

* 🎨 Style: 린트 프리티어 적용

* ✨ feat: 확인 삭제 모달 추가

* 💄 design: max 1200으로 수정, container 삭제

* 🎨 style: eslint changed

* 🐛 Fix: anchor 를 Link로 변경

* 📦 chore: 패키지 설치

* ✨ feat: react-toastify를 이용해 toast 구현

* 💄 design: UI 작업 #57

* 🐛 fix: (crew) 폴더 안으로 이동

* 🔥 chore: git static 폴더 삭제

* 🐛 fix: 파일위치 재설정

* 🐛 fix: import 오류 해결

* 🐛 fix: 빌드 오류 -> import문 수정

* 🐛 fix: eslint changed

* Feat/cr 71/create gathering modal (#52)

* ✨ Feat: calendar-filter 컴포넌트 작성

* 🧪 Test: 스토리북 추가

* 💚 CI: 빌드 오류 수정

* 📦 Chore: 페이지 폴더 변경

* 📦 Chore: 페이지 폴더 변경, 패키지 추가

* 💄 Design : 반응형 스타일 적용

* 🚚 Chore: 폴더 위치 변경

* Update and rename deploy.yml to trigger.yml

* Update dispatch.yml

* Update and rename trigger.yml to deploy.yml

* Update dispatch.yml

* Create dispatch_develop.yml

* Create deploy_develop.yml

* Update dispatch_develop.yml

* Update deploy_develop.yml

* Update deploy.yml

* Update deploy_develop.yml

* Update dispatch.yml

* Update dispatch_develop.yml

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 약속 만들기 모달 초안 작성

* 🐛 Fix: 날짜 초기값 설정, 필수값 수정

* 🐛 Fix: 파일정리, onClose Prop 추가

* 🧪 Test: 스토리북 추가

* 🔧 Chore: tailwind config 설정 오타 수정

* 🐛 Fix: 타입 이름 수정

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 린트오류 수정, 스크롤바 수정

* 🚨 Fix: 빌드오류 수정

* 🎨 Style: 린트프리티어 적용

* 🚨 Fix: 린트 적용용

* 💄 Design: 디자인 맞추고 필요없는 파일 삭제

* 🎨 Style: 코드 정리

* 🐛 fix: profiles에 전달하는 prop 수정

* 🔥 fix: 사용하지 않는 테스트 주석처리

* ✏️ fix: 페이지네이션으로 변경하면서 타입 변경

* 📝 docs: 목데이터 rate 변경

* 💄 design: 페이지네이션 디자인 변경

* 🎨 style: eslint changed

* 🐛 fix: 프로필에 이미지 전달안되는 문제 수정 안쓰는 import 제거

* ✨ feat: rate 변경

* 🐛 fix: 크루카드 경로수정

* ✨ feat: 크루 리뷰 데이터 목 api 페이지네이션

* ✨ feat: 리뷰리스트 페이지네이션

* 🧪 test: 스토리북 추가

* 🐛 fix: 파일 위치 변경, 네이밍 변경

* 📝 docs: 데이터 일부 변경

* 📝 docs: 주석 추가

* 🐛 fix:  import 변경

* ✨ feat: 목 데이터 가공

* 💄 design: 스타일 변경

* ✨ feat: 크루 리뷰 조립

* 🐛 fix: 프로필모음 변경에 따른 타입, 코드 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 🐛 fix: lint 에러, 빌드 에러 수정

* 💄 design: reviewList 삽입

* 🚑 fix: 이름 수정

* 🚑 Fix: 변경요청

* 🔥 Remove: 옛날 develop 파일 삭제

* Feat/56/my crew page (#58)

* Feat: 나의 크루 페이지 초안 작성

* 🚨 Fix: 린트프리티어 적용

* 🚨 Fix: 빌드 오류 수정

* Update crew-card-list.tsx

* 🚨 Fix: 빌드 오류 제거

* 🚚 Chore: 파일 이동

* 💄 Design: PC에서만 2열로 보이도록 수정

* 💄 Design: 패딩 추가, 파일 이동

* 💄 Design : 생성페이지 패딩 추가

* ✨ Feat: 로더 적용

* 🎨 Style: 린트 프리티어 적용

* 💚 CI: 워크플로우 수정

* 🚨 Fix: 절대경로로 수정

* Fix: 빌드에러 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 타입 오류 수정

* 🐛 fix: 경로수정

* ✨ feat: 약속 만들기 모달 연결

* 🐛 Fix: 빌드 오류 수정

* ✨ feat: 확인 취소 모달 연결

* 🐛 fix: 오타 수정

* Feat/60/my-gathering-page (#73)

* ✨ Feat: my-gathering 버튼 추가 및 하위 컴포넌트 분리

* ✨ Feat: 하위 페이지로 분리

* ✨ Feat: GatheringList 추가

* 💄 Style: gatheringlist max-w 삭제

* 💄 Style: 전체 레이아웃에 flex-1 추가

* ✨ Feat: gatheringListWithDate 컴포넌트 추가

* 💄 Style: gatheringListWithDate UI 수정

* ✨ Feat: popoverCalendar 추가, 🐛 Fix: card 모바일환경 이미지 사이즈 수정

* ✨ Feat: 참여한 모임 페이지 추가

* ✨ Feat: gathering Detail Modal API 추가

* 🐛 fix: 경로수정

* 🐛 fix: prettier error 수정

* 🐛 fix: api dummydata로 임시 수정

* 🚨 Fix: 워크플로우 수정

* 💄 design: 리스트 삽입 및 디자인 수정

* 🐛 fix: 타입이름 수정 #67

* 💄 design: UI 수정 #67

* 🐛 fix: cors url 추가

* 🐛 fix: 환경변수로 재설정

* 🐛 fix: url 기본값 설정

* 💄 Design: 버튼 색 변경

* 🐛 fix: 요청시 url 수정

* Feat/cr 58/create crew page (#75)

* ✨ Feat: 텍스트인풋, 드롭다운, 파일인풋 추가

* ♻️ Refactor: 드롭다운 수정 반영

* ✨ Feat: 페이지 초안 작성

* 💄 Style: 프리티어 적용

* 💄 Design: 디자인 적용, 파일 이동

* 💄 Design: 디자인 적용, 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🧪 Test: 스토리북 추가가

* 🐛 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚚 Chore: 파일 이동

* ✨ Feat: 유효성 검사 추가

* 🔧 Chore: 스토리북 빌드 오류 때문에 설정 수정

* 🔧 Chore: 설정 제거

* 🐛 Fix: dropdown 다른 곳에 영향 안가도록 수정

* 🐛 Fix: onBlur 빼내기

* 🚚 Chore: 파일 이동, CSR로 전환

* 🎨 Style : 린트프리티어 적용

* 🐛 Fix: 오류 수정

* 🐛 Fix: 버튼 교체

* 🐛 Fix: TextInput 교체

* 🔧 Chore: config 변경

* 🐛 Fix: 스토리북 빌드오류 수정

* 🐛 Fix: 스토리북 빌드오류 수정

* 🚚 Chore: 파일 이동

* 🚨 Fix: 린트 오류 수정

* 🐛 Fix: 같은 파일 업로드시 업로드 되지 않는 문제 해결

* 🐛 Fix: 한글입력시 21자에서 되돌아가는 문제 수정

* 🐛 Fix: 블러시 함수 충돌문제 해결

* ♻️ Refactor: 코드 리팩토링

* 🐛 Fix: 쿼리 분리

* ✨ feat: 리뷰 작성 모달 삽입

* 🐛 fix: api url 수정

* 📝 docs: mock.josn 추가

* ✨ feat: 목 api를 json server로

* 🐛 fix: 잘못된 네이밍 변경

* 🎨 style: eslint 수정

* ♻️ refactor: isModalOpened 함수 수정

* 📝 docs: id num 수정

* 🐛 fix: totalReviewCount로 이름 변경

* 📦 chore: 사용하지 않는 파일, 폴더 삭제

* 🐛 fix: url 원래대로 수정

* 🐛 fix: cors 링크 glitch로 수정

* Hotfix: env 명칭변경 (#84)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🚑 fix: 엔드포인트 변경

* 🚑 fix: 로그인 하지 않은 사용자 막기

* 🐛 fix: api 연결전 크루 id 임시로 사용

* 🐛 fix: api 연결전 크루 id 임시로 사용

* 🐛 fix: 사용하지 않는부분 주석처리

* 🐛 fix: 로그아웃 로직삭제

* Hofix/index page : 파일샘플 컴포넌트 수정 (#88)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🐛 Fix: 파일 샘플 컴포넌트 수정

* 🚨 Fix: 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* Hofix/index page (#91)

* Hotfix: env 명칭변경

* ♻️ Refactor: fetchApi 함수 사용

* 💄 Desgin: 스타일 수정

* 🐛 Fix: 타입 개선, 에러 처리

* 🐛 Fix: 파일 샘플 컴포넌트 수정

* 🚨 Fix: 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🚨 Fix: 빌드 오류 수정

* 🐛 Fix: 폼 오류 제거

* 📝 Docs: readme 추가

* Docs : 리드미 수정

* 🐛 Fix: 드롭다운 에러메시지 오류 수정

* 🐛 Fix: 폼 초기값 수정

* Update create-gathering.tsx

* Feat/96/form (#97)

* 🐛 Fix: 드롭다운 값 선택시 포커스 아웃 되도록 수정

* 🐛 Fix: 텍스트 수정(약속 잡기 > 약속 만들기)

* 🐛 Fix: 크루 생성시 디테일 페이지로 이동, 리팩토링

* 🐛 Fix: 에러상태인데 새로 값 채울 때 에러 해제하기, 리팩토링

* 🐛 Fix: 유효성 검사 날짜 선택 오류 수정

* 🐛 Fix: 스크롤바 두개로 보이는 문제 수정

* 🚨 Fix: 린트 오류 제거

* 🐛 Fix: 버튼 링크로 교체

* 🐛 Fix: isToday 함수 개선, 데이터 한국시간 기준으로 변경

* 🐛 Fix: 폼 동작 개선

* 🐛 Fix: 이전날짜 선택 방지, isToday 날짜 비교 수정

* 🐛 Fix: MockData 날짜 형식 수정

* 🐛 Fix: 이미지 파일 형식 제한, 크기 제한

---------

Co-authored-by: HaeJungg <[email protected]>
Co-authored-by: min5x5 <[email protected]>
Co-authored-by: HaeJungg <[email protected]>
Co-authored-by: 조예은 <[email protected]>
Co-authored-by: Cho Yeeun <[email protected]>
Co-authored-by: User850413 <[email protected]>
Co-authored-by: 김민경 <[email protected]>
Co-authored-by: SOOHYEONG CHOI <[email protected]>
@coderabbitai coderabbitai bot mentioned this pull request Nov 22, 2024
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants