neue 1-page version
This commit is contained in:
287
index.html
287
index.html
@@ -3,105 +3,218 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>KI-Lösungen & Beratung | Ihre Experten für künstliche Intelligenz</title>
|
<title>AI Solutions - Ihre KI-Experten</title>
|
||||||
<meta name="description" content="Professionelle KI-Beratung und maßgeschneiderte Lösungen für Ihr Unternehmen. Steigern Sie Ihre Effizienz mit unserer KI-Expertise.">
|
<style>
|
||||||
<link rel="stylesheet" href="css/normalize.css">
|
:root {
|
||||||
<link rel="stylesheet" href="css/styles.css">
|
--primary: #2563eb;
|
||||||
<script src="js/main.js" defer></script>
|
--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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav class="container">
|
||||||
<ul>
|
<div class="logo">AI Solutions</div>
|
||||||
<li><a href="#home">Home</a></li>
|
<div class="nav-links">
|
||||||
<li><a href="#services">Services</a></li>
|
<a href="#features">Lösungen</a>
|
||||||
<li><a href="#about">Über uns</a></li>
|
<a href="#contact">Kontakt</a>
|
||||||
<li><a href="#case-studies">Case Studies</a></li>
|
</div>
|
||||||
<li><a href="#contact">Kontakt</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main>
|
<section class="hero">
|
||||||
<section id="home" class="hero">
|
<div class="container">
|
||||||
<h1>KI-Lösungen für die Zukunft Ihres Unternehmens</h1>
|
<h1>Intelligente Chatbot-<br>Lösungen für Ihr Business</h1>
|
||||||
<p>Steigern Sie Ihre Effizienz und Wettbewerbsfähigkeit mit maßgeschneiderten KI-Strategien</p>
|
<p>Steigern Sie Ihre Kundenbetreuung mit KI-gestützten Chatbots.<br>
|
||||||
<a href="#contact" class="cta-button">Jetzt Beratungsgespräch vereinbaren</a>
|
24/7 verfügbar, mehrsprachig und perfekt auf Ihre Bedürfnisse abgestimmt.</p>
|
||||||
</section>
|
<a href="#contact" class="btn">Beratungsgespräch vereinbaren</a>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section id="services" class="services">
|
<section id="features" class="features">
|
||||||
<h2>Unsere Services</h2>
|
<div class="container">
|
||||||
<div class="service-grid">
|
<h2>Unsere Chatbot-Lösungen</h2>
|
||||||
<div class="service-card">
|
<div class="features-grid">
|
||||||
<img src="assets/icons/strategy.svg" alt="KI-Strategie Icon">
|
<div class="feature-card">
|
||||||
<h3>KI-Strategie</h3>
|
<h3>Kundenservice Chatbot</h3>
|
||||||
<p>Entwicklung individueller KI-Strategien für Ihr Unternehmen</p>
|
<p>Automatisierte Beantwortung von häufigen Kundenanfragen, Ticketerstellung und Weiterleitung an zuständige Mitarbeiter.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="service-card">
|
<div class="feature-card">
|
||||||
<img src="assets/icons/implementation.svg" alt="KI-Implementierung Icon">
|
<h3>E-Commerce Assistant</h3>
|
||||||
<h3>KI-Implementierung</h3>
|
<p>Persönliche Produktempfehlungen, Bestellstatus-Updates und Unterstützung im Kaufprozess rund um die Uhr.</p>
|
||||||
<p>Nahtlose Integration von KI-Lösungen in Ihre bestehenden Systeme</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="service-card">
|
<div class="feature-card">
|
||||||
<img src="assets/icons/training.svg" alt="KI-Training Icon">
|
<h3>HR & Onboarding Bot</h3>
|
||||||
<h3>KI-Training</h3>
|
<p>Automatisierte Bewerbungsprozesse, FAQ-Beantwortung für neue Mitarbeiter und interne Supportanfragen.</p>
|
||||||
<p>Schulungen und Workshops zur Nutzung von KI-Technologien</p>
|
|
||||||
</div>
|
|
||||||
<div class="service-card">
|
|
||||||
<img src="assets/icons/analytics.svg" alt="KI-Analytics Icon">
|
|
||||||
<h3>KI-Analytics</h3>
|
|
||||||
<p>Datenanalyse und Prognosen mithilfe fortschrittlicher KI-Algorithmen</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section id="about" class="about">
|
<section id="contact" class="contact">
|
||||||
<h2>Über uns</h2>
|
<div class="container">
|
||||||
<p>Wir sind Ihr vertrauenswürdiger Partner für innovative KI-Lösungen. Unsere Expertise liegt in der Entwicklung und Implementierung maßgeschneiderter KI-Strategien, die Ihr Unternehmen auf die nächste Stufe heben.</p>
|
|
||||||
<ul class="usp-list">
|
|
||||||
<li>Jahrelange Erfahrung in KI-Technologien</li>
|
|
||||||
<li>Interdisziplinäres Team aus KI-Experten und Branchenspezialisten</li>
|
|
||||||
<li>Fokus auf praxisnahe, skalierbare Lösungen</li>
|
|
||||||
<li>Kontinuierliche Forschung und Innovation im KI-Bereich</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section id="case-studies" class="case-studies">
|
|
||||||
<h2>Case Studies</h2>
|
|
||||||
<div class="case-study-grid">
|
|
||||||
<div class="case-study-card">
|
|
||||||
<h3>Effizienzsteigerung in der Logistik</h3>
|
|
||||||
<p>Durch den Einsatz unserer KI-gestützten Routenoptimierung konnte ein Logistikunternehmen seine Lieferzeiten um 30% verkürzen und Kraftstoffkosten um 25% senken.</p>
|
|
||||||
</div>
|
|
||||||
<div class="case-study-card">
|
|
||||||
<h3>Präzise Nachfrageprognose im Einzelhandel</h3>
|
|
||||||
<p>Unsere KI-basierte Prognoselösung ermöglichte einem Einzelhändler eine Reduzierung von Überbeständen um 40% bei gleichzeitiger Steigerung der Produktverfügbarkeit um 15%.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section id="contact" class="contact">
|
|
||||||
<h2>Kontaktieren Sie uns</h2>
|
<h2>Kontaktieren Sie uns</h2>
|
||||||
<form action="/submit-form" method="POST">
|
<form>
|
||||||
<label for="name">Name</label>
|
<div class="form-group">
|
||||||
<input type="text" id="name" name="name" required>
|
<label for="name">Name</label>
|
||||||
|
<input type="text" id="name" required>
|
||||||
<label for="email">E-Mail</label>
|
</div>
|
||||||
<input type="email" id="email" name="email" required>
|
<div class="form-group">
|
||||||
|
<label for="email">E-Mail</label>
|
||||||
<label for="company">Unternehmen</label>
|
<input type="email" id="email" required>
|
||||||
<input type="text" id="company" name="company">
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
<label for="message">Nachricht</label>
|
<label for="message">Ihre Nachricht</label>
|
||||||
<textarea id="message" name="message" required></textarea>
|
<textarea id="message" rows="5" required></textarea>
|
||||||
|
</div>
|
||||||
<button type="submit">Nachricht senden</button>
|
<button type="submit" class="btn">Absenden</button>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</div>
|
||||||
</main>
|
</section>
|
||||||
|
|
||||||
<footer>
|
|
||||||
<p>© 2025 OMG AI Solutions. Alle Rechte vorbehalten.</p>
|
|
||||||
</footer>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user