Kontaktdaten eingefügt

This commit is contained in:
2025-01-04 13:11:28 +01:00
parent b33d04cf84
commit 117a89ab05
3 changed files with 36 additions and 18 deletions

View File

@@ -145,6 +145,27 @@
border-radius: 6px;
}
.contact-info {
list-style-type: none;
padding: 0;
margin-top: 2rem;
}
.contact-info li {
margin-bottom: 1rem;
font-size: 1.1rem;
}
.contact-info a {
color: var(--primary);
text-decoration: none;
transition: color 0.3s;
}
.contact-info a:hover {
color: var(--secondary);
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
@@ -159,7 +180,7 @@
<body>
<header>
<nav class="container">
<div class="logo">AI Solutions</div>
<div class="logo">OMG AI Solutions</div>
<div class="nav-links">
<a href="#features">Lösungen</a>
<a href="#contact">Kontakt</a>
@@ -169,7 +190,7 @@
<section class="hero">
<div class="container">
<h1>Intelligente Chatbot-<br>Lösungen für Ihr Business</h1>
<h1>Intelligente KI-Lösungen <br>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>
@@ -199,21 +220,12 @@
<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>
<p>Nutzen Sie unsere Expertise zu Ihrem Vorteil und erreichen Sie uns unter:</p>
<ul class="contact-info">
<li><strong>Email:</strong> <a href="mailto:office@rattensberger.ai">office@rattensberger.ai</a></li>
<li><strong>Telefon:</strong> <a href="tel:+436605514819">+43 660 551 48 19</a></li>
<li><strong>LinkedIn:</strong> <a href="https://linkedin.com/in/martin-rattensberger" target="_blank" rel="noopener noreferrer">linkedin.com/in/martin-rattensberger</a></li>
</ul>
</div>
</section>
</body>