Files
Assistent/templates/landing.html
SimolZimol 4f44d25d8e 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
2025-06-19 19:18:47 +02:00

55 lines
2.9 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>AI Vertriebsassistent Tech Demo für Nicolaisen Casing & Packaging GmbH</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="/" {% 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>
<p>
Diese Anwendung ist eine technische Demonstration für die interne Nutzung bei Nicolaisen Casing & Packaging GmbH.<br>
Sie dient ausschließlich zu Test- und Evaluierungszwecken und ist nicht für den Produktivbetrieb bestimmt.
</p>
<div class="cta">
<a href="/chat">Jetzt KI-Chat testen</a>
</div>
<p>
<b>Demo-Features:</b><br>
&bull; KI-gestützte Auswertung von Excel-Daten<br>
&bull; Schnelle Antworten auf Kunden- und Vertriebsfragen<br>
&bull; DSGVO-konforme Demo-Architektur
</p>
<p style="color:#ffb300; font-weight:bold;">
Diese Tech Demo ist ausschließlich für Mitarbeiter von Nicolaisen Casing & Packaging GmbH bestimmt.
</p>
<div class="footer">
&copy; 2025 Simon Giehl Tech Demo für Nicolaisen Casing & Packaging GmbH.
</div>
</div>
</body>
</html>