modified: templates/agb.html modified: templates/chat.html modified: templates/datenschutz.html modified: templates/impressum.html modified: templates/kontakt.html modified: templates/landing.html
48 lines
2.1 KiB
HTML
48 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Impressum – AI Vertriebsassistent</title>
|
||
<style>
|
||
body { background: #23272f; color: #e3e3e3; font-family: 'Segoe UI', Arial, sans-serif; margin: 0; }
|
||
.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; }
|
||
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>
|
||
Angaben gemäß § 5 TMG<br>
|
||
<b>Simon Giehl</b><br>
|
||
Mühlenweg 9<br>
|
||
47608 Geldern<br>
|
||
Deutschland<br>
|
||
<br>
|
||
<b>Kontakt:</b><br>
|
||
E-Mail: simon@projekt-senegal.de<br>
|
||
</p>
|
||
<p>
|
||
Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:<br>
|
||
Simon Giehl, Adresse wie oben
|
||
</p>
|
||
<div class="footer">
|
||
© 2025 Simon Giehl – Tech Demo für Nicolaisen Casing & Packaging GmbH.
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |