fix: 메인 홈 - 이벤트 배너 영역

- 기존 홈 탭 상단에 있는 배너 임시 추가
This commit is contained in:
Yu Sung
2025-07-15 03:31:08 +09:00
parent e39b93b152
commit 8158a910ed
3 changed files with 7 additions and 6 deletions

View File

@@ -145,7 +145,7 @@ struct HomeTabView: View {
}
if !viewModel.eventBannerList.isEmpty {
SectionEventBannerView(items: viewModel.eventBannerList)
ContentMainBannerViewV2(bannerList: viewModel.eventBannerList)
}
if !viewModel.originalAudioDramaList.isEmpty {
@@ -280,7 +280,7 @@ struct HomeTabView: View {
- 대표 이메일 : sodalive.official@gmail.com
""")
.font(.custom(Font.medium.rawValue, size: 11))
.font(.custom(Font.preRegular.rawValue, size: 11))
.foregroundColor(Color.gray77)
.padding(.horizontal, 13.3)
}
@@ -298,12 +298,12 @@ struct HomeTabView: View {
Text(viewModel.errorMessage)
.padding(.vertical, 13.3)
.frame(width: screenSize().width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.font(.custom(Font.preRegular.rawValue, size: 12))
.background(Color.button)
.foregroundColor(Color.white)
.multilineTextAlignment(.leading)
.cornerRadius(20)
.padding(.bottom, 66.7)
.padding(.top, 66.7)
Spacer()
}
}