This commit is contained in:
2026-04-06 01:23:10 +09:00
commit 09c78206a8
12 changed files with 439 additions and 0 deletions

16
internal/pages/home.go Normal file
View File

@@ -0,0 +1,16 @@
package pages
type HomePageMsg struct{}
type MenuItem struct {
Label string
Key string
}
func HomeMenuItems() []MenuItem {
return []MenuItem{
{Label: "Select Server", Key: "server"},
{Label: "Config", Key: "config"},
{Label: "Exit", Key: "exit"},
}
}