diff --git a/frontend/src/pages/mobile/public/Home.jsx b/frontend/src/pages/mobile/public/Home.jsx index 72b06c4..89f43df 100644 --- a/frontend/src/pages/mobile/public/Home.jsx +++ b/frontend/src/pages/mobile/public/Home.jsx @@ -35,9 +35,19 @@ function MobileHome() { return (
{/* 히어로 섹션 */} -
+
-
+

fromis_9

프로미스나인

@@ -45,14 +55,19 @@ function MobileHome() { 이제는 약속해 소중히 간직해,
당신의 아이돌로 성장하겠습니다!

-
+ {/* 장식 */}
-
+ {/* 멤버 섹션 */} -
+

멤버

- {members.map((member) => ( + {members.map((member, index) => (
@@ -82,10 +100,15 @@ function MobileHome() { ))}
-
+ {/* 앨범 섹션 */} -
+

앨범

- {albums.map((album) => ( + {albums.map((album, index) => ( navigate(`/album/${album.folder_name}`)} className="bg-white rounded-xl overflow-hidden shadow-sm" + initial={{ opacity: 0, y: 20 }} + animate={{ opacity: 1, y: 0 }} + transition={{ delay: 0.6 + index * 0.1, duration: 0.3 }} whileTap={{ scale: 0.98 }} >
@@ -119,10 +145,15 @@ function MobileHome() { ))}
-
+ {/* 일정 섹션 */} -
+

다가오는 일정

+
); }