diff --git a/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx b/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx index 88015ac..4997567 100644 --- a/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx +++ b/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx @@ -15,39 +15,35 @@ function VarietySection({ schedule }) { return (
- {/* 상단: 썸네일 + 오버레이 */} - {hasThumbnail && ( -
- {hasReplayUrl ? ( - -
+
+ {/* 왼쪽: 썸네일 (세로 포스터) */} + {hasThumbnail && ( +
+ {hasReplayUrl ? ( + {schedule.title} -
- {/* 재생 오버레이 */} -
-
- +
+
+ +
-
-
- ) : ( -
+ + ) : ( {schedule.title} -
- )} -
- )} + )} +
+ )} - {/* 콘텐츠 */} -
+ {/* 오른쪽: 콘텐츠 */} +
{/* 방송사 + 날짜 */}
{schedule.broadcaster && ( @@ -99,6 +95,7 @@ function VarietySection({ schedule }) {
)}
+
); }