From 68e3745ba2a9f28dda40e26d5829cb772acbea59 Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 17:11:50 +0900 Subject: [PATCH 01/14] =?UTF-8?q?style:=20HomePostCard=20=EC=9D=B4?= =?UTF-8?q?=EB=AF=B8=EC=A7=80=20=EB=B0=8F=20=EC=A0=84=EC=B2=B4=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=20=EA=B5=AC=EC=A1=B0=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 이미지와 컨텐츠 영역 래핑 구조 추가 - 이미지 사이즈 조정 - 이미지 border 오버레이 처리 및 색상 opacity 적용 --- src/components/Home/HomePostCard.tsx | 102 +++++++++++++++------------ 1 file changed, 56 insertions(+), 46 deletions(-) diff --git a/src/components/Home/HomePostCard.tsx b/src/components/Home/HomePostCard.tsx index 1e9f2856..37291230 100644 --- a/src/components/Home/HomePostCard.tsx +++ b/src/components/Home/HomePostCard.tsx @@ -35,57 +35,67 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { return (
- {jobPostingData?.representative_img_url ? ( -
- ) : ( -
- )} -
-

- {jobPostingData.title} -

-

- {jobPostingData.company_name} - - {jobPostingData.summaries.address.split(' ').slice(0, 2).join(' ')}{' '} -

-
-
- - +
+ {jobPostingData?.representative_img_url ? ( +
+
+
+
+ ) : ( +
+
+
+ )} +
+
+

+ {jobPostingData.title} +

+

+ {jobPostingData.company_name} + + {jobPostingData.summaries.address.split(' ').slice(0, 2).join(' ')}{' '} +

+
+
+ + +
+
); }; export default HomePostCard; + From 74ba9ba345f221d92e59cbe5e294b7235ac60091 Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 17:15:57 +0900 Subject: [PATCH 02/14] =?UTF-8?q?style:=20HomePostCard=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EC=98=81=EC=97=AD=20=EA=B5=AC=EC=A1=B0=20?= =?UTF-8?q?=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 제목 영역 line-clamp-2 적용 및 1줄 대응을 위한 max-height 조정 - 구분선 w-px divider 구조로 변경 --- src/components/Home/HomePostCard.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/Home/HomePostCard.tsx b/src/components/Home/HomePostCard.tsx index 37291230..bd8ee2b0 100644 --- a/src/components/Home/HomePostCard.tsx +++ b/src/components/Home/HomePostCard.tsx @@ -56,13 +56,13 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { )}
-

+

{jobPostingData.title}

-

+

{jobPostingData.company_name} - - {jobPostingData.summaries.address.split(' ').slice(0, 2).join(' ')}{' '} + + {jobPostingData.summaries.address.split(' ').slice(0, 2).join(' ')}

@@ -98,4 +98,3 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { }; export default HomePostCard; - From 0b307c961a3d49da3ec23a5ba64bfb5ac8e44abd Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 17:48:30 +0900 Subject: [PATCH 03/14] =?UTF-8?q?fix:=20HomeCareerPostCard=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=EC=9D=84=20HomePostCard=EC=99=80=20?= =?UTF-8?q?=EB=8F=99=EC=9D=BC=ED=95=98=EA=B2=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 이미지 및 전체 레이아웃 구조 통일 - 텍스트 영역 구조 통일 --- src/components/Home/HomeCareerPostCard.tsx | 78 +++++++++++----------- 1 file changed, 40 insertions(+), 38 deletions(-) diff --git a/src/components/Home/HomeCareerPostCard.tsx b/src/components/Home/HomeCareerPostCard.tsx index 2109eeff..246b3c7c 100644 --- a/src/components/Home/HomeCareerPostCard.tsx +++ b/src/components/Home/HomeCareerPostCard.tsx @@ -26,48 +26,50 @@ const HomeCareerPostCard = ({ careerData }: HomeCareerPostCardProps) => { return (
- {/* 이미지 박스 - 기존 Job 공고와 동일하게 통일 */} - {careerData.img_urls && careerData.img_urls.length > 0 ? ( -
- ) : ( -
- No Image -
- )} - -
- {/* 제목 */} -

- {careerData.title} -

+
+ {careerData.img_urls && careerData.img_urls.length > 0 ? ( +
+
+
+
+ ) : ( +
+
+
+ )} - {/* 주관-주최 */} -

- {careerData.organizer_name ?? '-'} - - {careerData.host_name ?? '-'} -

+
+
+

+ {careerData.title} +

+

+ {careerData.organizer_name ?? '-'} + + {careerData.host_name ?? '-'} +

+
- {/* 태그 영역 */} -
- {careerData.career_category && ( - - {CAREER_CATEGORY[careerData.career_category]} - - )} - {careerData.visa && careerData.visa.length > 0 && ( - - {RepresentedVisa} - - )} +
+ {careerData.career_category && ( + + {CAREER_CATEGORY[careerData.career_category]} + + )} + {careerData.visa && careerData.visa.length > 0 && ( + + {RepresentedVisa} + + )} +
From 6265d267820b3ecffaee18d0eaec83ed04ccecdb Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 20:54:20 +0900 Subject: [PATCH 04/14] =?UTF-8?q?=F0=9F=8E=A8=20style:=20Tag=20=EC=BB=B4?= =?UTF-8?q?=ED=8F=AC=EB=84=8C=ED=8A=B8=20rounded=20=EA=B0=92=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit isRounded 가 false일 시 rounded-md, true일 시 rounded-lg 가 통합 적용되도록 수정 (Tag 컴포넌트가 사용된 모든 코드 확인완료함) --- src/components/Common/Tag.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Common/Tag.tsx b/src/components/Common/Tag.tsx index d0866c4d..4b36667d 100644 --- a/src/components/Common/Tag.tsx +++ b/src/components/Common/Tag.tsx @@ -27,7 +27,7 @@ const Tag = ({ }: TagProps) => { return (
{hasCheckIcon && } {value} From 746873be904cc7e58c04a0482050df8b0855c30c Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 21:29:39 +0900 Subject: [PATCH 05/14] =?UTF-8?q?=F0=9F=94=A7=20chore:=20[Tag=20spec=20mat?= =?UTF-8?q?ch]=20HomePostCard=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Home/HomePostCard.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Home/HomePostCard.tsx b/src/components/Home/HomePostCard.tsx index bd8ee2b0..ab5913f0 100644 --- a/src/components/Home/HomePostCard.tsx +++ b/src/components/Home/HomePostCard.tsx @@ -74,21 +74,21 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { ] : jobPostingData.tags.employment_type.toLowerCase() } - padding="py-[0.188rem] px-[0.25rem]" + padding="py-[3px] px-[5px]" isRounded={false} hasCheckIcon={false} backgroundColor="bg-[#0066FF1F]" color="text-text-success" - fontStyle="caption-12-regular" + fontStyle="caption-11-semibold" />
From d0d3a301a050297145fa37679404e21fcae6e117 Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 21:38:06 +0900 Subject: [PATCH 06/14] =?UTF-8?q?=F0=9F=94=A7=20chore:=20[Tag=20spec=20mat?= =?UTF-8?q?ch]=20JobPostingCard=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Common/JobPostingCard.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Common/JobPostingCard.tsx b/src/components/Common/JobPostingCard.tsx index fe8a1c97..5fb88eff 100644 --- a/src/components/Common/JobPostingCard.tsx +++ b/src/components/Common/JobPostingCard.tsx @@ -56,12 +56,12 @@ const CardDeadLineTag = () => { return ( ); }; @@ -161,12 +161,12 @@ const CardTagList = () => { ? EN_FILTER_CATEGORY_OPTIONS[tags.employment_type?.toLowerCase()] : tags.employment_type?.toLowerCase() } - padding="py-[0.188rem] px-[0.375rem]" + padding="pt-[3px] pb-[4px] px-[6px]" isRounded={true} hasCheckIcon={false} backgroundColor="bg-surface-secondary" color="text-text-normal" - fontStyle="caption-12-regular" + fontStyle="caption-12-semibold" /> { ] : tags.job_category.replace(/_/g, ' ').toLowerCase() } - padding="py-[0.188rem] px-[0.375rem]" + padding="pt-[3px] pb-[4px] px-[6px]" isRounded={true} hasCheckIcon={false} backgroundColor="bg-surface-secondary" color="text-text-normal" - fontStyle="caption-12-regular" + fontStyle="caption-12-semibold" />
); From 390dbab6170170ee048021720ca8ae4bfad366d6 Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 21:43:16 +0900 Subject: [PATCH 07/14] =?UTF-8?q?=F0=9F=94=A7=20chore:=20[Tag=20spec=20mat?= =?UTF-8?q?ch]=20EmployerApplicantCard=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ApplicantList/EmployerApplicantCard.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx b/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx index 6d5b7d8a..f951bb8d 100644 --- a/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx +++ b/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx @@ -16,48 +16,48 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( ); case APPLICATION_STEP.RESUME_REJECTED: return ( ); case APPLICATION_STEP.APPLICATION_REJECTED: return ( ); default: return ( ); } From 1817d39182d1ff82b282a6908715a98ac7bbeaba Mon Sep 17 00:00:00 2001 From: SEO Date: Fri, 1 Aug 2025 21:47:41 +0900 Subject: [PATCH 08/14] =?UTF-8?q?=F0=9F=94=A7=20chore:=20[Tag=20spec=20mat?= =?UTF-8?q?ch]=20ApplicationPostCard=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Application/ApplicationPostCard.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/Application/ApplicationPostCard.tsx b/src/components/Application/ApplicationPostCard.tsx index 79587775..ba663ff9 100644 --- a/src/components/Application/ApplicationPostCard.tsx +++ b/src/components/Application/ApplicationPostCard.tsx @@ -14,48 +14,48 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( ); case APPLICATION_STEP.RESUME_REJECTED: return ( ); case APPLICATION_STEP.APPLICATION_REJECTED: return ( ); default: return ( ); } From 3137247c345c5003e916f68b09bb87b59a04e1e7 Mon Sep 17 00:00:00 2001 From: SEO Date: Sat, 2 Aug 2025 01:24:27 +0900 Subject: [PATCH 09/14] =?UTF-8?q?=F0=9F=8E=A8=20style:=20JobPostingCard=20?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Common/JobPostingCard.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/Common/JobPostingCard.tsx b/src/components/Common/JobPostingCard.tsx index 5fb88eff..db1a67f8 100644 --- a/src/components/Common/JobPostingCard.tsx +++ b/src/components/Common/JobPostingCard.tsx @@ -79,11 +79,11 @@ const CardHeader = ({ isBookMarkButton }: { isBookMarkButton?: boolean }) => { }; return ( -
+

{title}

-
+
{account_type === UserType.USER && isBookMarkButton && (
From 2ef3bc11b5a55a0d997993db49f884f4526b907a Mon Sep 17 00:00:00 2001 From: SEO Date: Sun, 3 Aug 2025 17:43:02 +0900 Subject: [PATCH 10/14] =?UTF-8?q?=F0=9F=94=A7=20chore:=20[Tag=20spec=20mat?= =?UTF-8?q?ch]=20HomeCareerPostCard=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Home/HomeCareerPostCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Home/HomeCareerPostCard.tsx b/src/components/Home/HomeCareerPostCard.tsx index 246b3c7c..92628dbd 100644 --- a/src/components/Home/HomeCareerPostCard.tsx +++ b/src/components/Home/HomeCareerPostCard.tsx @@ -60,12 +60,12 @@ const HomeCareerPostCard = ({ careerData }: HomeCareerPostCardProps) => {
{careerData.career_category && ( - + {CAREER_CATEGORY[careerData.career_category]} )} {careerData.visa && careerData.visa.length > 0 && ( - + {RepresentedVisa} )} From 313493036f70d41ccc3fa133105506abf9ca8c80 Mon Sep 17 00:00:00 2001 From: SEO Date: Thu, 7 Aug 2025 19:25:46 +0900 Subject: [PATCH 11/14] =?UTF-8?q?=F0=9F=8E=A8=20style:=20EmployeeCard=20?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/EmployeeCard/EmployeeCard.tsx | 83 ++++++++++--------- 1 file changed, 42 insertions(+), 41 deletions(-) diff --git a/src/components/Common/EmployeeCard/EmployeeCard.tsx b/src/components/Common/EmployeeCard/EmployeeCard.tsx index 27db200a..b0f79061 100644 --- a/src/components/Common/EmployeeCard/EmployeeCard.tsx +++ b/src/components/Common/EmployeeCard/EmployeeCard.tsx @@ -70,57 +70,58 @@ const EmployeeCard = ({ cardData, variant }: EmployeeCardProps) => { // Column 형 카드 return (
-
+
{cardData?.profile_img_url ? ( - profile +
+
+
+
) : ( -
- No Image +
+
)} -
- -
-

- {cardData?.name} -

- -

- {cardData?.title || '친절한 서비스를 고객을 맞게 만들어보아요!'} -

- -
-
- {cardData?.visa && ( - - )} +
+
+

+ {cardData.name} +

+

+ {cardData?.title} +

+
+
+
+ {cardData?.visa && ( + + )} +
+
- -
); -}; export default EmployeeCard; From 5a28228621fa8bb327500ee03347a47ad2e5b44e Mon Sep 17 00:00:00 2001 From: Savien/Woo Jun Han <49388937+MrMirror21@users.noreply.github.com> Date: Thu, 7 Aug 2025 20:15:01 +0900 Subject: [PATCH 12/14] =?UTF-8?q?=F0=9F=94=A7=20chore:=20px=20->=20rem=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Application/ApplicationCardList.tsx | 4 ++-- .../Application/ApplicationPostCard.tsx | 14 +++++++------- .../Common/EmployeeCard/EmployeeCard.tsx | 14 +++++++------- src/components/Common/JobPostingCard.tsx | 10 +++++----- .../ApplicantList/EmployerApplicantCard.tsx | 16 ++++++++-------- src/components/Home/HomeCareerPostCard.tsx | 12 ++++++------ src/components/Home/HomePostCard.tsx | 12 ++++++------ 7 files changed, 41 insertions(+), 41 deletions(-) diff --git a/src/components/Application/ApplicationCardList.tsx b/src/components/Application/ApplicationCardList.tsx index ef9d1b39..a9bb2bf4 100644 --- a/src/components/Application/ApplicationCardList.tsx +++ b/src/components/Application/ApplicationCardList.tsx @@ -34,8 +34,8 @@ const ApplicationCardList = ({ return (
-

No results found

-

+

No results found

+

We couldn’t find any jobs matching your search.
Try adjusting your filters!

diff --git a/src/components/Application/ApplicationPostCard.tsx b/src/components/Application/ApplicationPostCard.tsx index ba663ff9..9752af68 100644 --- a/src/components/Application/ApplicationPostCard.tsx +++ b/src/components/Application/ApplicationPostCard.tsx @@ -14,10 +14,10 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( @@ -26,10 +26,10 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( @@ -38,10 +38,10 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( @@ -50,7 +50,7 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( {
{ /> { // Column 형 카드 return (
-
+
{cardData?.profile_img_url ? ( -
+
{
) : ( -
+
)} @@ -103,7 +103,7 @@ const EmployeeCard = ({ cardData, variant }: EmployeeCardProps) => { {cardData?.visa && ( { return ( @@ -161,7 +161,7 @@ const CardTagList = () => { ? EN_FILTER_CATEGORY_OPTIONS[tags.employment_type?.toLowerCase()] : tags.employment_type?.toLowerCase() } - padding="pt-[3px] pb-[4px] px-[6px]" + padding="pt-[0.188rem] pb-[0.25rem] px-[0.375rem]" isRounded={true} hasCheckIcon={false} backgroundColor="bg-surface-secondary" @@ -176,10 +176,10 @@ const CardTagList = () => { ] : tags.job_category.replace(/_/g, ' ').toLowerCase() } - padding="pt-[3px] pb-[4px] px-[6px]" + padding="pt-[0.188rem] pb-[0.25rem] px-[0.375rem]" isRounded={true} hasCheckIcon={false} - backgroundColor="bg-[#0066FF1F]" + backgroundColor="bg-status-success/10" color="text-text-success" fontStyle="caption-12-semibold" /> diff --git a/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx b/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx index f951bb8d..ce1cdff3 100644 --- a/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx +++ b/src/components/Employer/ApplicantList/EmployerApplicantCard.tsx @@ -16,10 +16,10 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( @@ -28,10 +28,10 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( @@ -40,10 +40,10 @@ const renderStatusBar = (status: ApplicationStepType) => { return ( @@ -52,7 +52,7 @@ const renderStatusBar = (status: ApplicationStepType) => { return (
-

+

{applicantData?.duration_of_days}일 전

diff --git a/src/components/Home/HomeCareerPostCard.tsx b/src/components/Home/HomeCareerPostCard.tsx index 92628dbd..27b97399 100644 --- a/src/components/Home/HomeCareerPostCard.tsx +++ b/src/components/Home/HomeCareerPostCard.tsx @@ -26,12 +26,12 @@ const HomeCareerPostCard = ({ careerData }: HomeCareerPostCardProps) => { return (
-
+
{careerData.img_urls && careerData.img_urls.length > 0 ? ( -
+
{
) : ( -
+
)} @@ -60,12 +60,12 @@ const HomeCareerPostCard = ({ careerData }: HomeCareerPostCardProps) => {
{careerData.career_category && ( - + {CAREER_CATEGORY[careerData.career_category]} )} {careerData.visa && careerData.visa.length > 0 && ( - + {RepresentedVisa} )} diff --git a/src/components/Home/HomePostCard.tsx b/src/components/Home/HomePostCard.tsx index ab5913f0..9f18d83c 100644 --- a/src/components/Home/HomePostCard.tsx +++ b/src/components/Home/HomePostCard.tsx @@ -35,12 +35,12 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { return (
-
+
{jobPostingData?.representative_img_url ? ( -
+
{
) : ( -
+
)} @@ -74,7 +74,7 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { ] : jobPostingData.tags.employment_type.toLowerCase() } - padding="py-[3px] px-[5px]" + padding="py-[0.188rem] px-[0.313rem]" isRounded={false} hasCheckIcon={false} backgroundColor="bg-[#0066FF1F]" @@ -83,7 +83,7 @@ const HomePostCard = ({ jobPostingData }: HomePostCardProps) => { /> Date: Thu, 7 Aug 2025 20:15:19 +0900 Subject: [PATCH 13/14] =?UTF-8?q?=F0=9F=90=9B=20fix:=20=EC=BB=B4=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=97=90=EB=9F=AC=20=EC=88=98=EC=A0=95=20#468?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Common/EmployeeCard/EmployeeCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Common/EmployeeCard/EmployeeCard.tsx b/src/components/Common/EmployeeCard/EmployeeCard.tsx index 8283d33c..df3a1fb5 100644 --- a/src/components/Common/EmployeeCard/EmployeeCard.tsx +++ b/src/components/Common/EmployeeCard/EmployeeCard.tsx @@ -123,5 +123,5 @@ const EmployeeCard = ({ cardData, variant }: EmployeeCardProps) => {
); - +}; export default EmployeeCard; From 89cce485d78e1f21d158a6d11b51fd1e3a129d14 Mon Sep 17 00:00:00 2001 From: Savien/Woo Jun Han <49388937+MrMirror21@users.noreply.github.com> Date: Thu, 7 Aug 2025 20:17:04 +0900 Subject: [PATCH 14/14] =?UTF-8?q?=F0=9F=93=9D=20docs:=20readme=20=EB=AC=B8?= =?UTF-8?q?=EC=84=9C=20=EB=82=B4=20deepwiki=20=EB=A7=81=ED=81=AC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f8097117..26b99da1 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,10 @@ > https://youtu.be/PfW00paozHM?si=0qIEgXpjnI9DGKZO +## DeepWiki + +> https://deepwiki.com/Team-inglo/Giggle-Web + ## Tech Stack