fix: 메인 홈

- 섹션 제목 크기 26 -> 24 변경
- 라이브 이미지 pdf 파일로 변경
This commit is contained in:
Yu Sung
2025-07-22 01:12:07 +09:00
parent 0db3c2cc19
commit 967c83a122
5 changed files with 15 additions and 22 deletions

View File

@@ -1,17 +1,8 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "img_live.png", "filename" : "img_live.pdf",
"idiom" : "universal", "idiom" : "universal"
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
} }
], ],
"info" : { "info" : {

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -31,6 +31,8 @@ struct HomeLiveItemView: View {
} }
Image("img_live") Image("img_live")
.resizable()
.frame(width: 50, height: 18)
} }
VStack(alignment: .leading, spacing: 4) { VStack(alignment: .leading, spacing: 4) {

View File

@@ -55,11 +55,11 @@ struct HomeTabView: View {
VStack(alignment: .leading, spacing: 16) { VStack(alignment: .leading, spacing: 16) {
HStack(spacing: 0) { HStack(spacing: 0) {
Text("지금") Text("지금")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.button) .foregroundColor(.button)
Text(" 라이브중") Text(" 라이브중")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white) .foregroundColor(.white)
} }
.padding(.horizontal, 24) .padding(.horizontal, 24)
@@ -96,11 +96,11 @@ struct HomeTabView: View {
VStack(alignment: .leading, spacing: 16) { VStack(alignment: .leading, spacing: 16) {
HStack(spacing: 0) { HStack(spacing: 0) {
Text("인기") Text("인기")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.button) .foregroundColor(.button)
Text(" 크리에이터") Text(" 크리에이터")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white) .foregroundColor(.white)
} }
.padding(.horizontal, 24) .padding(.horizontal, 24)
@@ -167,11 +167,11 @@ struct HomeTabView: View {
VStack(alignment: .leading, spacing: 16) { VStack(alignment: .leading, spacing: 16) {
HStack(spacing: 0) { HStack(spacing: 0) {
Text("오직") Text("오직")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.button) .foregroundColor(.button)
Text(" 보이스온에서만") Text(" 보이스온에서만")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white) .foregroundColor(.white)
} }
.padding(.horizontal, 24) .padding(.horizontal, 24)
@@ -213,11 +213,11 @@ struct HomeTabView: View {
VStack(alignment: .leading, spacing: 16) { VStack(alignment: .leading, spacing: 16) {
HStack(spacing: 0) { HStack(spacing: 0) {
Text("추천") Text("추천")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.button) .foregroundColor(.button)
Text(" 채널") Text(" 채널")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white) .foregroundColor(.white)
} }
.padding(.horizontal, 24) .padding(.horizontal, 24)
@@ -237,11 +237,11 @@ struct HomeTabView: View {
VStack(alignment: .leading, spacing: 16) { VStack(alignment: .leading, spacing: 16) {
HStack(spacing: 0) { HStack(spacing: 0) {
Text("무료") Text("무료")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.button) .foregroundColor(.button)
Text(" 콘텐츠") Text(" 콘텐츠")
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white) .foregroundColor(.white)
} }
.padding(.horizontal, 24) .padding(.horizontal, 24)
@@ -263,7 +263,7 @@ struct HomeTabView: View {
VStack(alignment: .leading, spacing: 16) { VStack(alignment: .leading, spacing: 16) {
HStack(spacing: 0) { HStack(spacing: 0) {
Text(curation.title) Text(curation.title)
.font(.custom(Font.preBold.rawValue, size: 26)) .font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white) .foregroundColor(.white)
} }
.padding(.horizontal, 24) .padding(.horizontal, 24)