Login and Home

This commit is contained in:
Daniel Arantes Loverde
2026-02-04 16:55:29 -03:00
parent 78daaf1927
commit 33fc111459
90 changed files with 1707 additions and 303 deletions

View File

@@ -0,0 +1,15 @@
import SwiftUI
struct CartView: View {
var body: some View {
VStack(spacing: 16) {
Text("Carrinho")
.font(AppTypography.heading1)
Text("Seu carrinho esta vazio")
.foregroundStyle(AppColors.secondary)
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(AppColors.backgroundLight)
}
}