diff --git a/src/features/minihome/home/HomePage.tsx b/src/features/minihome/home/HomePage.tsx
index 050d383..0e62d6e 100644
--- a/src/features/minihome/home/HomePage.tsx
+++ b/src/features/minihome/home/HomePage.tsx
@@ -1,8 +1,9 @@
import dayjs from "dayjs";
-import { MessageCircle, UserRound, Star } from "lucide-react";
+import { MessageCircle, Star } from "lucide-react";
import { useEffect, useState, type Dispatch, type SetStateAction } from "react";
import { twMerge } from "tailwind-merge";
+import Avatar from "@/components/Avatar/Avatar";
import { useAuthStore } from "@/stores/useAuthStore";
import type { Database } from "@/types/database.types";
import type { MiniHomeTabs } from "@/types/minihome.types";
@@ -205,21 +206,12 @@ export default function HomePage({
};
return (
-
+
{/* 왼쪽 프로필 영역 */}
{/* 프로필 이미지 */}
-
- {avatarUrl ? (
-
-

-
- ) : (
-
-
-
- )}
-
+
+
{/* 이름 */}
{nickname}
diff --git a/src/features/minihome/post/detail/CommentItem.tsx b/src/features/minihome/post/detail/CommentItem.tsx
index 67e0716..c59faec 100644
--- a/src/features/minihome/post/detail/CommentItem.tsx
+++ b/src/features/minihome/post/detail/CommentItem.tsx
@@ -1,8 +1,9 @@
import dayjs from "dayjs";
import "dayjs/locale/ko";
import relativeTime from "dayjs/plugin/relativeTime";
-import { Trash, User } from "lucide-react";
+import { Trash } from "lucide-react";
+import Avatar from "@/components/Avatar/Avatar";
import { useAuthUser } from "@/hooks/useAuthUser";
import type { CommentWithProfile } from "@/types/post.types";
@@ -24,13 +25,7 @@ export default function CommentItem({ comment, onDelete, isMyHome }: CommentItem
return (
- {avatarUrl ? (
-

- ) : (
-
-
-
- )}
+