From d23aefebfdc65e4422a1fcf1e08f7793b4d2826e Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 04:50:31 +0900 Subject: [PATCH 1/7] =?UTF-8?q?fix(home):=20=EA=B2=8C=EC=8B=9C=EA=B8=80=20?= =?UTF-8?q?=EC=97=86=EB=8A=94=20=EC=82=AC=EC=9A=A9=EC=9E=90=EC=9D=98=20?= =?UTF-8?q?=EA=B2=8C=EC=8B=9C=EA=B8=80=20=EB=AF=B8=EB=A6=AC=EB=B3=B4?= =?UTF-8?q?=EA=B8=B0=EA=B0=80=20=EB=8D=AE=EC=96=B4=EC=94=8C=EC=9B=8C?= =?UTF-8?q?=EC=A7=80=EB=8A=94=20=ED=98=84=EC=83=81=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/home/HomePage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index 43a1425..1ba25fe 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -50,6 +50,7 @@ export default function HomePage({ const [posts, setPosts] = useState([]); useEffect(() => { + setPosts([]); const fetchHomePage = async () => { try { if (!user) { From 2209aca14017e0b382d59cdc2853eb8c58c9d8a0 Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 06:15:58 +0900 Subject: [PATCH 2/7] =?UTF-8?q?refactor(home):=20=ED=85=8C=EC=9D=BC?= =?UTF-8?q?=EC=9C=88=EB=93=9C=20=EB=B8=8C=EB=A0=88=EC=9D=B4=ED=81=AC=20?= =?UTF-8?q?=ED=8F=AC=EC=9D=B8=ED=8A=B8=EB=A5=BC=20=ED=86=B5=ED=95=B4=20?= =?UTF-8?q?=EC=A0=84=EC=B2=B4=ED=99=94=EB=A9=B4=20=EC=8B=9C=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=ED=95=84=20=EC=9D=B4=EB=AF=B8=EC=A7=80=EA=B0=80=20?= =?UTF-8?q?=EC=BB=A4=EC=A7=80=EB=8F=84=EB=A1=9D=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/home/HomePage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index 1ba25fe..3313262 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -229,12 +229,12 @@ export default function HomePage({ }; return ( -
+
{/* 왼쪽 프로필 영역 */}
{/* 프로필 이미지 */} - + {/* 이름 */}

{nickname}

From 357da4a10e40c87c7a498e301617e02798bf0120 Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 07:38:21 +0900 Subject: [PATCH 3/7] =?UTF-8?q?refactor(home):=20=EB=B8=8C=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=ED=81=AC=20=ED=8F=AC=EC=9D=B8=ED=8A=B8=EB=A1=9C=20?= =?UTF-8?q?=EC=A0=84=EC=B2=B4=ED=99=94=EB=A9=B4=20=EC=8B=9C=20=EC=A2=8C?= =?UTF-8?q?=EC=B8=A1=20=ED=94=84=EB=A1=9C=ED=95=84=20=EC=98=81=EC=97=AD?= =?UTF-8?q?=EC=97=90=20py=20=ED=8C=A8=EB=94=A9=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/MiniHome.tsx | 2 +- src/features/minihome/home/HomePage.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/minihome/MiniHome.tsx b/src/features/minihome/MiniHome.tsx index 989240c..2f72345 100644 --- a/src/features/minihome/MiniHome.tsx +++ b/src/features/minihome/MiniHome.tsx @@ -51,7 +51,7 @@ export default function MiniHome({ windowId, ownerId, tab = MINIHOME_TABS.home } ))} - + diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index 3313262..cb1727a 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -231,7 +231,7 @@ export default function HomePage({ return (
{/* 왼쪽 프로필 영역 */} -
+
{/* 프로필 이미지 */} @@ -240,7 +240,7 @@ export default function HomePage({

{nickname}

{/* 소개글 */} -
+

{bio}

From 69375177a4f7adf44d4522f7defa700049f238c4 Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 07:50:49 +0900 Subject: [PATCH 4/7] =?UTF-8?q?refactor(home):=20=EA=B2=8C=EC=8B=9C?= =?UTF-8?q?=EB=AC=BC=EC=9D=84=206=EA=B0=9C=20=EB=B6=88=EB=9F=AC=EC=99=80?= =?UTF-8?q?=EC=84=9C=20=EB=B8=8C=EB=A0=88=EC=9D=B4=ED=81=AC=20=ED=8F=AC?= =?UTF-8?q?=EC=9D=B8=ED=8A=B8=EC=97=90=20=EB=94=B0=EB=9D=BC=206=EA=B0=9C?= =?UTF-8?q?=20=ED=98=B9=EC=9D=80=203=EA=B0=9C=EC=9D=98=20=EA=B2=8C?= =?UTF-8?q?=EC=8B=9C=EB=AC=BC=EC=9D=84=20=ED=91=9C=EC=8B=9C=ED=95=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/home/HomePage.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index cb1727a..32aa2d1 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -135,13 +135,13 @@ export default function HomePage({ setImages(mappedImages); } - // 게시물 정보 가져오기 (최근 3개) + // 게시물 정보 가져오기 (최근 6개) const { data: postRows, error: postError } = await supabase .from("homepage_posts") .select("id, title, created_at, visibility") .eq("homepage_id", homepage.id) .order("created_at", { ascending: false }) - .limit(3); + .limit(6); if (postError) { throw postError; @@ -316,10 +316,13 @@ export default function HomePage({
    - {posts.map((post) => ( + {posts.map((post, index) => (
  • = 3 && "hidden @2xl:flex" + )} > {post.title}
    From 0aaf91a86ac8e9a0b71c6c758f75a6579a79468a Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 07:56:42 +0900 Subject: [PATCH 5/7] =?UTF-8?q?refactor(home):=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=ED=95=84=20=EC=98=81=EC=97=AD=EC=9D=98=20=EC=9C=84=EC=95=84?= =?UTF-8?q?=EB=9E=98=20=ED=8C=A8=EB=94=A9=EC=9D=84=20=EC=A0=9C=EA=B1=B0?= =?UTF-8?q?=ED=95=98=EA=B3=A0=20flex=20=EC=A0=95=EB=A0=AC=EB=A1=9C=20?= =?UTF-8?q?=EC=A4=91=EC=95=99=EB=B0=B0=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/home/HomePage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index 32aa2d1..9824eba 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -229,9 +229,9 @@ export default function HomePage({ }; return ( -
    +
    {/* 왼쪽 프로필 영역 */} -
    +
    {/* 프로필 이미지 */} @@ -268,7 +268,7 @@ export default function HomePage({
    {/* 오른쪽 콘텐츠 */} -
    +
    {/* 사진첩 */}
    From 8bb99d91a93f2dd2b762a86f791edf1c21b7c438 Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 08:06:16 +0900 Subject: [PATCH 6/7] =?UTF-8?q?refactor(home):=20=EC=98=A4=EB=A5=B8?= =?UTF-8?q?=EC=AA=BD=20=EC=BB=A8=ED=85=90=EC=B8=A0=20=EC=98=81=EC=97=AD?= =?UTF-8?q?=EC=97=90=20=EC=8A=A4=ED=81=AC=EB=A1=A4=EB=B0=94=20=EC=A0=81?= =?UTF-8?q?=EC=9A=A9=ED=95=98=EC=97=AC=20=EB=B0=98=EC=9D=91=ED=98=95?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=8C=80=EC=9D=91=ED=95=A0=20=EC=88=98=20?= =?UTF-8?q?=EC=9E=88=EA=B2=8C=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/home/HomePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index 9824eba..d7578af 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -268,7 +268,7 @@ export default function HomePage({
    {/* 오른쪽 콘텐츠 */} -
    +
    {/* 사진첩 */}
    From 006631ca8080373251878a5584b3e7a620231c31 Mon Sep 17 00:00:00 2001 From: rumpumpum Date: Thu, 20 Nov 2025 08:33:21 +0900 Subject: [PATCH 7/7] =?UTF-8?q?style(home):=20=EC=BD=94=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=EB=9F=BF=20=EB=A6=AC=EB=B7=B0=EC=97=90=20=EB=94=B0=EB=A5=B8=20?= =?UTF-8?q?css=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/minihome/home/HomePage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx index d7578af..4c9292c 100644 --- a/src/features/minihome/home/HomePage.tsx +++ b/src/features/minihome/home/HomePage.tsx @@ -231,7 +231,7 @@ export default function HomePage({ return (
    {/* 왼쪽 프로필 영역 */} -
    +
    {/* 프로필 이미지 */} @@ -240,7 +240,7 @@ export default function HomePage({

    {nickname}

    {/* 소개글 */} -
    +

    {bio}