diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index bd356b7..0000000 --- a/docs/index.html +++ /dev/null @@ -1,950 +0,0 @@ - - -
- - -Create sophisticated, interactive terminal user interfaces on macOS and Linux with a declarative, SwiftUI-like API. No dependencies. Pure Swift.
- -
- Powerful features built into TUIKit to help you create beautiful terminal interfaces
-Build interfaces using Swift's result builders and view composition, just like SwiftUI but optimized for the terminal.
-Choose from line, rounded, doubleLine, heavy, and block rendering modes to match your design.
-Green, Amber, White, and Red themes with fully customizable colors for complete visual control.
-Text, Button, Menu, Alert, Dialog, Card, Panel, and more components ready to use in your apps.
-Tab/Shift+Tab navigation with keyboard shortcuts and intelligent focus tracking built-in.
-@State, @Environment, @AppStorage, @SceneStorage property wrappers for reactive UIs.
-Enterprise-grade framework with zero external dependencies
-Pure Swift implementation with no external dependencies required
-Optimized rendering engine for smooth interactions
-Works on macOS 10.15+ and Linux with glibc
-Easy integration with Swift Package Manager
-Built with the latest Swift language features
-Stable API for building production applications
-Create your first terminal UI in minutes
-import TUIKit
-
-@main
-struct MyApp: App {
- var body: some Scene {
- WindowGroup {
- VStack(spacing: 1) {
- Text("Welcome to TUIKit!")
- .bold()
- .foregroundColor(.theme.accent)
-
- Spacer()
-
- Button("Press me") {
- print("Button pressed!")
- }
-
- Spacer()
- }
- .padding()
- }
- }
-}
-
-// Run with: swift runSee what developers are saying about TUIKit
-Start creating beautiful terminal UIs today
- -