Kontaktdaten eingefügt
This commit is contained in:
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"brapifra.phpserver"
|
||||
]
|
||||
}
|
||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"window.autoDetectColorScheme": true
|
||||
"window.autoDetectColorScheme": true,
|
||||
"workbench.editor.alwaysShowEditorActions": true
|
||||
}
|
||||
46
index.html
46
index.html
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user