diff --git a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift index e7e4046..b287b9f 100644 --- a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift +++ b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift @@ -102,16 +102,6 @@ struct ContentMainTabHomeView: View { ) .frame(maxWidth: .infinity) - ContentMainTabCategoryView( - imageName: "ic_category_audio_book", - title: "오디오북", - onClick: { - viewModel.errorMessage = "준비중입니다." - viewModel.isShowPopup = true - } - ) - .frame(maxWidth: .infinity) - ContentMainTabCategoryView( imageName: "ic_category_alarm", title: "모닝콜", @@ -125,9 +115,7 @@ struct ContentMainTabHomeView: View { } ) .frame(maxWidth: .infinity) - } - - HStack(spacing: 0) { + ContentMainTabCategoryView( imageName: "ic_category_asmr", title: "ASMR", @@ -141,7 +129,9 @@ struct ContentMainTabHomeView: View { } ) .frame(maxWidth: .infinity) - + } + + HStack(spacing: 0) { ContentMainTabCategoryView( imageName: "ic_category_replay", title: "다시듣기", @@ -156,16 +146,6 @@ struct ContentMainTabHomeView: View { ) .frame(maxWidth: .infinity) - ContentMainTabCategoryView( - imageName: "ic_category_audio_toon", - title: "오디오툰", - onClick: { - viewModel.errorMessage = "준비중입니다." - viewModel.isShowPopup = true - } - ) - .frame(maxWidth: .infinity) - ContentMainTabCategoryView( imageName: "ic_category_free", title: "무료", @@ -179,6 +159,26 @@ struct ContentMainTabHomeView: View { } ) .frame(maxWidth: .infinity) + + ContentMainTabCategoryView( + imageName: "ic_category_audio_book", + title: "오디오북", + onClick: { + viewModel.errorMessage = "준비중입니다." + viewModel.isShowPopup = true + } + ) + .frame(maxWidth: .infinity) + + ContentMainTabCategoryView( + imageName: "ic_category_audio_toon", + title: "오디오툰", + onClick: { + viewModel.errorMessage = "준비중입니다." + viewModel.isShowPopup = true + } + ) + .frame(maxWidth: .infinity) } } .padding(.vertical, 13.3)