diff --git a/exel_datein/2024/09/4.xlsx b/exel_datein/2024/09/15.xlsx similarity index 52% rename from exel_datein/2024/09/4.xlsx rename to exel_datein/2024/09/15.xlsx index 9d96b69..3f735ab 100644 Binary files a/exel_datein/2024/09/4.xlsx and b/exel_datein/2024/09/15.xlsx differ diff --git a/templates/agb.html b/templates/agb.html index ecdaebb..8b2c4a9 100644 --- a/templates/agb.html +++ b/templates/agb.html @@ -8,10 +8,21 @@ .container { max-width: 700px; margin: 60px auto; background: #181a20; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.18); padding: 40px 32px; } h1 { color: #00aaff; } .footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; } + .nav { text-align: center; margin-bottom: 40px; } + .nav a { color: #00aaff; margin: 0 15px; text-decoration: none; } + .nav a.active { text-decoration: underline; }
+

Nutzungsbedingungen (AGB)

1. Geltungsbereich
diff --git a/templates/chat.html b/templates/chat.html index 3635be4..2bdd4e3 100644 --- a/templates/chat.html +++ b/templates/chat.html @@ -244,10 +244,41 @@ #input-area { padding: 0 6px; } #header { padding: 16px 6px 0 6px; } } + .nav { + display: flex; + justify-content: center; + background: #181a20; + padding: 12px 0; + border-bottom: 1px solid #2c313a; + } + .nav a { + color: #00aaff; + text-decoration: none; + padding: 10px 20px; + border-radius: 8px; + transition: background 0.2s, color 0.2s; + } + .nav a:hover { + background: #00aaff; + color: #fff; + } + .nav .active { + background: #00aaff; + color: #fff; + font-weight: bold; + }

+