From 6213cdc0ac58a8a0001c8fbc0d2278d6919881cf Mon Sep 17 00:00:00 2001 From: jangyonghan Date: Sat, 18 Jan 2025 23:18:24 +0900 Subject: [PATCH 01/13] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4a528c..cc5df2f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ [노션 상세 계획 링크](https://www.notion.so/12e2e48b770d805cb0d3ddb022f87f83) ## 📄 배포 사이트 -[배포 사이트 링크](https://ott-moving.vercel.app/) +[배포 사이트 링크](https://moving-project-ott.vercel.app/) ## 📚 기술 스택
From 1ee4fedeb117b637d2cb58a66f5d785ad1c13140 Mon Sep 17 00:00:00 2001 From: jangyonghan Date: Tue, 4 Feb 2025 14:21:48 +0900 Subject: [PATCH 02/13] =?UTF-8?q?refactoring=20:=20=EC=9E=A5=EB=A5=B4?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=A0=88=EC=9D=B4=EC=95=84?= =?UTF-8?q?=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 --- moving/src/components/mainPage/MainBanner.tsx | 7 ++++--- moving/src/components/mainPage/MoviesSection.tsx | 2 +- .../{SectionCardList .tsx => SectionCardList.tsx} | 4 +++- moving/src/components/searchPage/RelatedWorks.tsx | 9 ++++++--- moving/src/components/searchPage/SearchResult.tsx | 9 ++++++--- moving/src/components/shared/Navbar.tsx | 8 ++++---- moving/src/pages/genre/[genre].tsx | 15 ++++++++------- 7 files changed, 32 insertions(+), 22 deletions(-) rename moving/src/components/mainPage/{SectionCardList .tsx => SectionCardList.tsx} (96%) diff --git a/moving/src/components/mainPage/MainBanner.tsx b/moving/src/components/mainPage/MainBanner.tsx index 1dd3daa..8a1ae67 100644 --- a/moving/src/components/mainPage/MainBanner.tsx +++ b/moving/src/components/mainPage/MainBanner.tsx @@ -57,7 +57,9 @@ export default function MainBanner({ handleModalOpen }: MainBannerProps) { ); if (isLoading) { - return; + return ( +
+ ); } if (isError) { @@ -97,10 +99,9 @@ export default function MainBanner({ handleModalOpen }: MainBannerProps) {