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;
|
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) {
|
@media (max-width: 768px) {
|
||||||
.hero h1 {
|
.hero h1 {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
@@ -159,7 +180,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<nav class="container">
|
<nav class="container">
|
||||||
<div class="logo">AI Solutions</div>
|
<div class="logo">OMG AI Solutions</div>
|
||||||
<div class="nav-links">
|
<div class="nav-links">
|
||||||
<a href="#features">Lösungen</a>
|
<a href="#features">Lösungen</a>
|
||||||
<a href="#contact">Kontakt</a>
|
<a href="#contact">Kontakt</a>
|
||||||
@@ -169,7 +190,7 @@
|
|||||||
|
|
||||||
<section class="hero">
|
<section class="hero">
|
||||||
<div class="container">
|
<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>
|
<p>Steigern Sie Ihre Kundenbetreuung mit KI-gestützten Chatbots.<br>
|
||||||
24/7 verfügbar, mehrsprachig und perfekt auf Ihre Bedürfnisse abgestimmt.</p>
|
24/7 verfügbar, mehrsprachig und perfekt auf Ihre Bedürfnisse abgestimmt.</p>
|
||||||
<a href="#contact" class="btn">Beratungsgespräch vereinbaren</a>
|
<a href="#contact" class="btn">Beratungsgespräch vereinbaren</a>
|
||||||
@@ -199,21 +220,12 @@
|
|||||||
<section id="contact" class="contact">
|
<section id="contact" class="contact">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h2>Kontaktieren Sie uns</h2>
|
<h2>Kontaktieren Sie uns</h2>
|
||||||
<form>
|
<p>Nutzen Sie unsere Expertise zu Ihrem Vorteil und erreichen Sie uns unter:</p>
|
||||||
<div class="form-group">
|
<ul class="contact-info">
|
||||||
<label for="name">Name</label>
|
<li><strong>Email:</strong> <a href="mailto:office@rattensberger.ai">office@rattensberger.ai</a></li>
|
||||||
<input type="text" id="name" required>
|
<li><strong>Telefon:</strong> <a href="tel:+436605514819">+43 660 551 48 19</a></li>
|
||||||
</div>
|
<li><strong>LinkedIn:</strong> <a href="https://linkedin.com/in/martin-rattensberger" target="_blank" rel="noopener noreferrer">linkedin.com/in/martin-rattensberger</a></li>
|
||||||
<div class="form-group">
|
</ul>
|
||||||
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Reference in New Issue
Block a user