// // HomeWeeklyChartView.swift // SodaLive // // Created by klaus on 7/12/25. // import SwiftUI struct HomeWeeklyChartView: View { @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token) let rows = [ GridItem(.fixed(60), spacing: 16, alignment: .leading), GridItem(.fixed(60), spacing: 16, alignment: .leading), GridItem(.fixed(60), spacing: 16, alignment: .leading), GridItem(.fixed(60), spacing: 16, alignment: .leading) ] let contentList: [GetAudioContentRankingItem] var body: some View { VStack(spacing: 16) { HStack(spacing: 0) { Text("보온") .font(.custom(Font.preBold.rawValue, size: 26)) .foregroundColor(.button) Text(" 주간 차트") .font(.custom(Font.preBold.rawValue, size: 26)) .foregroundColor(.white) Spacer() } .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { LazyHGrid(rows: rows, spacing: 16) { ForEach(0..