Files
omg-ai.solutions/index.html

220 lines
5.9 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Solutions - Ihre KI-Experten</title>
<style>
:root {
--primary: #2563eb;
--secondary: #1e40af;
--text: #1f2937;
--background: #ffffff;
--accent: #dbeafe;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, sans-serif;
}
body {
color: var(--text);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
header {
background: var(--background);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary);
}
.nav-links a {
margin-left: 2rem;
text-decoration: none;
color: var(--text);
}
.hero {
padding: 160px 0 80px;
background: linear-gradient(135deg, var(--accent), var(--background));
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
line-height: 1.2;
}
.hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
color: #4b5563;
}
.btn {
display: inline-block;
padding: 1rem 2rem;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 8px;
transition: background 0.3s;
}
.btn:hover {
background: var(--secondary);
}
.features {
padding: 80px 0;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-card {
padding: 2rem;
background: white;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-card h3 {
margin: 1rem 0;
color: var(--primary);
}
.contact {
padding: 80px 0;
background: var(--accent);
}
.contact form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid #e5e7eb;
border-radius: 6px;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.nav-links {
display: none;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<div class="logo">AI Solutions</div>
<div class="nav-links">
<a href="#features">Lösungen</a>
<a href="#contact">Kontakt</a>
</div>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>Intelligente Chatbot-<br>Lösungen für Ihr Business</h1>
<p>Steigern Sie Ihre Kundenbetreuung mit KI-gestützten Chatbots.<br>
24/7 verfügbar, mehrsprachig und perfekt auf Ihre Bedürfnisse abgestimmt.</p>
<a href="#contact" class="btn">Beratungsgespräch vereinbaren</a>
</div>
</section>
<section id="features" class="features">
<div class="container">
<h2>Unsere Chatbot-Lösungen</h2>
<div class="features-grid">
<div class="feature-card">
<h3>Kundenservice Chatbot</h3>
<p>Automatisierte Beantwortung von häufigen Kundenanfragen, Ticketerstellung und Weiterleitung an zuständige Mitarbeiter.</p>
</div>
<div class="feature-card">
<h3>E-Commerce Assistant</h3>
<p>Persönliche Produktempfehlungen, Bestellstatus-Updates und Unterstützung im Kaufprozess rund um die Uhr.</p>
</div>
<div class="feature-card">
<h3>HR & Onboarding Bot</h3>
<p>Automatisierte Bewerbungsprozesse, FAQ-Beantwortung für neue Mitarbeiter und interne Supportanfragen.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Kontaktieren Sie uns</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">E-Mail</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="message">Ihre Nachricht</label>
<textarea id="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">Absenden</button>
</form>
</div>
</section>
</body>
</html>