modified: app.py

new file:   templates/datenschutz.html
	new file:   templates/impressum.html
	new file:   templates/kontakt.html
	new file:   templates/landing.html
This commit is contained in:
SimolZimol
2025-06-18 14:41:04 +02:00
parent b5a74c6166
commit d181b69a17
5 changed files with 180 additions and 1 deletions

51
templates/landing.html Normal file
View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>AI Vertriebsassistent Simon Giehl</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; font-size: 2.2em; margin-bottom: 0.2em; }
h2 { color: #7fd7ff; }
a { color: #00aaff; text-decoration: none; }
a:hover { text-decoration: underline; }
.nav { margin-bottom: 32px; }
.nav a { margin-right: 24px; color: #b0b6c3; }
.nav a.active { color: #00aaff; font-weight: bold; }
.cta { margin: 32px 0; }
.cta a { background: #00aaff; color: #fff; padding: 12px 32px; border-radius: 8px; font-size: 1.1em; text-decoration: none; transition: background 0.2s; }
.cta a:hover { background: #0078fe; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
</style>
</head>
<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>
</div>
<h1>AI Vertriebsassistent</h1>
<h2>Ihr smarter KI-Partner für Kunden- und Vertriebsinfos</h2>
<p>
Willkommen beim AI Vertriebsassistenten von Simon Giehl.<br>
Nutzen Sie modernste KI-Technologie, um Ihre Vertriebsprozesse zu optimieren und Kundeninformationen effizient zu verwalten.
</p>
<div class="cta">
<a href="/chat">Jetzt KI-Chat starten</a>
</div>
<p>
<b>Features:</b><br>
&bull; Intelligente Auswertung von Excel-Daten<br>
&bull; Schnelle Antworten auf Kunden- und Vertriebsfragen<br>
&bull; Datenschutzkonform und made in Germany
</p>
<div class="footer">
&copy; 2025 Simon Giehl &ndash; AI Vertriebsassistent. Alle Rechte vorbehalten.
</div>
</div>
</body>
</html>