mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-06-30 05:49:36 +00:00
34 lines
1.1 KiB
Swift
34 lines
1.1 KiB
Swift
import SwiftUI
|
|
|
|
/// Content-only version of the welcome page for use in the scrolling view.
|
|
///
|
|
/// This view displays only the textual content of the welcome page,
|
|
/// excluding the app icon which is shown in the fixed header.
|
|
struct WelcomeContentView: View {
|
|
var body: some View {
|
|
VStack(spacing: 30) {
|
|
VStack(spacing: 16) {
|
|
Text("Welcome to VibeTunnel")
|
|
.font(.largeTitle)
|
|
.fontWeight(.semibold)
|
|
|
|
Text("Turn any browser into your terminal. Command your agents on the go.")
|
|
.font(.body)
|
|
.foregroundColor(.secondary)
|
|
.multilineTextAlignment(.center)
|
|
.frame(maxWidth: 480)
|
|
}
|
|
|
|
Text(
|
|
"You'll be quickly guided through the basics of VibeTunnel.\nThis screen can always be opened from the settings."
|
|
)
|
|
.font(.body)
|
|
.foregroundColor(.secondary)
|
|
.multilineTextAlignment(.center)
|
|
.padding(.horizontal, 40)
|
|
|
|
Spacer()
|
|
}
|
|
.padding()
|
|
}
|
|
}
|