refactor(frontend): Landing‑Seite als Start gesetzt, Navigation um AppScreen.Landing erweitert und Footer‑Text modernisiert.

This commit is contained in:
2025-12-13 13:00:13 +01:00
parent f402fbaf19
commit 7b5fd063fb
3 changed files with 118 additions and 2 deletions
@@ -20,7 +20,7 @@ fun AppFooter() {
contentAlignment = Alignment.Center
) {
Text(
text = "© 2025 Meldestelle - Built with Kotlin Multiplatform",
text = "© Equest-Events · Entwickelt in Österreich",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant,
textAlign = TextAlign.Center
@@ -1,6 +1,7 @@
package at.mocode.clients.shared.navigation
sealed class AppScreen {
data object Landing : AppScreen()
data object Home : AppScreen()
data object Login : AppScreen()
data object Ping : AppScreen()