44 lines
1.1 KiB
Swift
44 lines
1.1 KiB
Swift
//
|
|
// IntroView.swift
|
|
// AcaMate
|
|
//
|
|
// Created by Sean Kim on 12/1/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Combine
|
|
|
|
struct IntroView: View {
|
|
var body: some View {
|
|
VStack(spacing: 0) {
|
|
Spacer()
|
|
.frame(height: 100)
|
|
Image("Team_Icon")
|
|
.resizable()
|
|
.frame(width: 200, height: 200)
|
|
.background(.white)
|
|
.border(.black)
|
|
.padding()
|
|
Spacer()
|
|
HStack(spacing: 4) {
|
|
Image("Team_Icon")
|
|
.resizable()
|
|
.frame(width: 24, height: 24)
|
|
Text("STEIN")
|
|
.font(.nps(font: .bold, size: 16))
|
|
.foregroundStyle(Color(.Text.detail))
|
|
}
|
|
.padding(.bottom,12)
|
|
Text("Copyright © Team.Stein")
|
|
.font(.nps(font: .regular, size: 14))
|
|
.foregroundStyle(Color(.Text.detail))
|
|
.padding(.bottom,50)
|
|
}
|
|
.fullView(.Normal.normal)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
IntroView()
|
|
}
|