renamed: exel_datein/2024/09/4.xlsx -> exel_datein/2024/09/15.xlsx

modified:   templates/agb.html
	modified:   templates/chat.html
	modified:   templates/datenschutz.html
	modified:   templates/impressum.html
	modified:   templates/kontakt.html
	modified:   templates/landing.html
This commit is contained in:
SimolZimol
2025-06-19 19:18:47 +02:00
parent c56f3f8648
commit 4f44d25d8e
7 changed files with 95 additions and 6 deletions

View File

@@ -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; }
</style>
</head>
<body>
<div class="container">
<div class="nav">
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<h1>Nutzungsbedingungen (AGB)</h1>
<p>
<b>1. Geltungsbereich</b><br>

View File

@@ -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;
}
</style>
</head>
<body>
<div id="container">
<div class="nav">
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<div id="header">
<h1>AI Vertriebsassistent Tech Demo</h1>
<p>Entwickelt von Simon Giehl für Nicolaisen Casing & Packaging GmbH<br>

View File

@@ -9,10 +9,21 @@
h1 { color: #00aaff; }
a { color: #00aaff; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
.nav { margin-bottom: 40px; }
.nav a { margin-right: 15px; }
.nav .active { font-weight: bold; text-decoration: underline; }
</style>
</head>
<body>
<div class="container">
<div class="nav">
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<h1>Datenschutzerklärung</h1>
<p>
Diese Anwendung ist eine technische Demo für die interne Nutzung bei Nicolaisen Casing & Packaging GmbH.<br>

View File

@@ -9,10 +9,21 @@
h1 { color: #00aaff; }
a { color: #00aaff; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
.nav { margin-bottom: 40px; }
.nav a { margin-right: 20px; }
.nav .active { font-weight: bold; }
</style>
</head>
<body>
<div class="container">
<div class="nav">
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<h1>Impressum</h1>
<p>
Diese Anwendung ist eine technische Demo, entwickelt von Simon Giehl für Nicolaisen Casing & Packaging GmbH.<br>

View File

@@ -12,9 +12,34 @@
button { background: #00aaff; color: #fff; border: none; border-radius: 8px; padding: 10px 28px; font-size: 1em; margin-top: 18px; cursor: pointer; }
button:hover { background: #0078fe; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
.nav {
display: flex;
justify-content: center;
background: #181a20;
padding: 10px 0;
border-radius: 12px 12px 0 0;
margin: -40px -32px 40px -32px;
}
.nav a {
color: #00aaff;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
border-radius: 6px;
transition: background 0.3s;
}
.nav a:hover, .nav a.active { background: #0078fe; }
</style>
</head>
<body>
<div class="nav">
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<div class="container">
<h1>Kontakt</h1>
<p>

View File

@@ -22,12 +22,12 @@
<body>
<div class="container">
<div class="nav">
<a href="/" class="active">Start</a>
<a href="/chat">Chat</a>
<a href="/kontakt">Kontakt</a>
<a href="/impressum">Impressum</a>
<a href="/datenschutz">Datenschutz</a>
<a href="/agb">AGB</a>
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<h1>AI Vertriebsassistent Tech Demo</h1>
<h2>Entwickelt von Simon Giehl für Nicolaisen Casing & Packaging GmbH</h2>