update event description

This commit is contained in:
David Rodenkirchen 2026-02-12 09:28:42 +01:00
parent 82cda92bfc
commit cd204da601

View File

@ -75,7 +75,7 @@ class OverviewPage(Component):
Row( Row(
Text("Internet", fill=self.session.theme.neutral_color, margin_left=1), Text("Internet", fill=self.session.theme.neutral_color, margin_left=1),
Spacer(), Spacer(),
Text(f"60/20 Mbit/s (down/up)", fill=self.session.theme.neutral_color, margin_right=1), Text(f"100/50 Mbit/s (down/up)", fill=self.session.theme.neutral_color, margin_right=1),
margin_bottom=0.3 margin_bottom=0.3
), ),
Row( Row(
@ -125,17 +125,5 @@ class OverviewPage(Component):
) )
) )
), ),
MainViewContentBox(
Column(
Text("Turniere & Ablauf", font_size=2, justify="center", fill=self.session.theme.neutral_color, margin_top=0.5, margin_bottom=1),
Column(
Row(
Text("Zum aktuellen Zeitpunkt steht noch nicht fest welche Turniere gespielt werden. Wir planen diverse Online- und Offline Turniere mit Preisen durchzuführen. Weitere Informationen gibt es, sobald sie kommen, auf der NEWS- und Turnier-Seite.", font_size=0.7,
fill=self.session.theme.neutral_color, margin_left=1, overflow="wrap"),
margin_bottom=0.3
)
)
)
),
Spacer() Spacer()
) )