// // ProfileContentView.swift // Hæ-appen // // Created by Ivar Løvlie on 03/12/2025. // import SwiftUI struct ProfileContentView : View { let auth = Auth() var body: some View { VStack { Text("Halla!") .font(.largeTitle) HStack { Button("Logg på", systemImage: "hand.raised.square.on.square") { auth.login() } Button("Registrer deg", systemImage: "hand.raised.square.on.square") { auth.register() } }.buttonStyle(.borderless) } } }