|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Kostenlose Website-Analyse | WebWizard</title> |
|
|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
|
|
<script> |
|
|
tailwind.config = { |
|
|
theme: { |
|
|
extend: { |
|
|
colors: { |
|
|
primary: '#4F46E5', |
|
|
secondary: '#10B981', |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
<style> |
|
|
.form-section { |
|
|
background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.03) 0%, rgba(255,255,255,1) 100%); |
|
|
} |
|
|
.hero-pattern { |
|
|
background-image: url("http://static.photos/technology/1200x630/42"); |
|
|
background-size: cover; |
|
|
background-position: center; |
|
|
background-blend-mode: overlay; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="font-sans antialiased"> |
|
|
|
|
|
<div class="hero-pattern bg-primary-700 text-white min-h-screen flex items-center"> |
|
|
<div class="container mx-auto px-6 py-24 text-center backdrop-brightness-75"> |
|
|
<h1 class="text-4xl md:text-6xl font-bold mb-6">Kostenlose Website-Analyse</h1> |
|
|
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto"> |
|
|
Entdecken Sie das versteckte Potential Ihrer Website in nur 15 Minuten. Wir zeigen Ihnen, wie Sie mehr Sichtbarkeit und Kunden gewinnen. |
|
|
</p> |
|
|
<a href="#analysis-form" class="bg-secondary-500 hover:bg-secondary-600 text-white font-bold py-4 px-8 rounded-full text-lg transition-all duration-300 inline-flex items-center"> |
|
|
Kostenlose Analyse starten |
|
|
<i data-feather="arrow-down" class="ml-2"></i> |
|
|
</a> |
|
|
|
|
|
<div class="mt-20 flex justify-center space-x-12 opacity-90"> |
|
|
<div class="text-center"> |
|
|
<div class="text-3xl font-bold">10+</div> |
|
|
<div class="text-sm uppercase tracking-wider">Jahre Erfahrung</div> |
|
|
</div> |
|
|
<div class="text-center"> |
|
|
<div class="text-3xl font-bold">500+</div> |
|
|
<div class="text-sm uppercase tracking-wider">Analysierte Websites</div> |
|
|
</div> |
|
|
<div class="text-center"> |
|
|
<div class="text-3xl font-bold">100%</div> |
|
|
<div class="text-sm uppercase tracking-wider">Zufriedenheit</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<section id="analysis-form" class="form-section py-20"> |
|
|
<div class="container mx-auto px-6 max-w-4xl"> |
|
|
<div class="bg-white rounded-xl shadow-xl overflow-hidden"> |
|
|
<div class="p-8 sm:p-10"> |
|
|
<h2 class="text-2xl md:text-3xl font-bold text-gray-800 mb-6">Fordern Sie Ihre kostenlose Analyse an</h2> |
|
|
<form class="space-y-6"> |
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6"> |
|
|
<div> |
|
|
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Ihr Name</label> |
|
|
<input type="text" id="name" name="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent" required> |
|
|
</div> |
|
|
<div> |
|
|
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">E-Mail Adresse</label> |
|
|
<input type="email" id="email" name="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent" required> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label for="website" class="block text-sm font-medium text-gray-700 mb-1">Website-URL</label> |
|
|
<input type="url" id="website" name="website" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent" required placeholder="https://"> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">Monatliche Besucher</label> |
|
|
<div class="grid grid-cols-3 gap-3"> |
|
|
<label class="inline-flex items-center"> |
|
|
<input type="radio" name="visitors" value="<100" class="h-4 w-4 text-primary-600 focus:ring-primary-500"> |
|
|
<span class="ml-2 text-gray-700"><100</span> |
|
|
</label> |
|
|
<label class="inline-flex items-center"> |
|
|
<input type="radio" name="visitors" value="100-500" class="h-4 w-4 text-primary-600 focus:ring-primary-500"> |
|
|
<span class="ml-2 text-gray-700">100-500</span> |
|
|
</label> |
|
|
<label class="inline-flex items-center"> |
|
|
<input type="radio" name="visitors" value="500+" class="h-4 w-4 text-primary-600 focus:ring-primary-500"> |
|
|
<span class="ml-2 text-gray-700">500+</span> |
|
|
</label> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label class="block text-sm font-medium text-gray-700 mb-1">Was möchten Sie verbessern?</label> |
|
|
<select class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent"> |
|
|
<option>Mehr Sichtbarkeit</option> |
|
|
<option>Mehr Leads</option> |
|
|
<option>Neues Design</option> |
|
|
<option>Bessere Performance</option> |
|
|
<option>Alles oben Genannte</option> |
|
|
</select> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Zusätzliche Anmerkungen (optional)</label> |
|
|
<textarea id="message" name="message" rows="3" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent"></textarea> |
|
|
</div> |
|
|
|
|
|
<div class="flex items-start"> |
|
|
<div class="flex items-center h-5"> |
|
|
<input id="terms" name="terms" type="checkbox" class="focus:ring-primary-500 h-4 w-4 text-primary-600 border-gray-300 rounded" required> |
|
|
</div> |
|
|
<div class="ml-3 text-sm"> |
|
|
<label for="terms" class="font-medium text-gray-700">Ich stimme der Datenschutzerklärung und den Nutzungsbedingungen zu</label> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<button type="submit" class="w-full bg-primary-500 hover:bg-primary-600 text-white font-bold py-4 px-6 rounded-lg transition-all duration-300 flex items-center justify-center"> |
|
|
Kostenlose Analyse anfordern |
|
|
<i data-feather="send" class="ml-2"></i> |
|
|
</button> |
|
|
</div> |
|
|
</form> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-16 bg-gray-50"> |
|
|
<div class="container mx-auto px-6"> |
|
|
<h2 class="text-2xl font-bold text-center text-gray-800 mb-12">Vertrauen von Fachleuten aus verschiedenen Branchen</h2> |
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center justify-center"> |
|
|
<div class="flex justify-center"> |
|
|
<div class="bg-white p-6 rounded-xl shadow-sm flex items-center justify-center h-24"> |
|
|
<span class="text-2xl font-bold text-gray-700">Medical</span> |
|
|
</div> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<div class="bg-white p-6 rounded-xl shadow-sm flex items-center justify-center h-24"> |
|
|
<span class="text-2xl font-bold text-gray-700">Legal</span> |
|
|
</div> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<div class="bg-white p-6 rounded-xl shadow-sm flex items-center justify-center h-24"> |
|
|
<span class="text-2xl font-bold text-gray-700">Finance</span> |
|
|
</div> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<div class="bg-white p-6 rounded-xl shadow-sm flex items-center justify-center h-24"> |
|
|
<span class="text-2xl font-bold text-gray-700">Retail</span> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-16 max-w-3xl mx-auto"> |
|
|
<div class="bg-white p-8 rounded-xl shadow-sm"> |
|
|
<div class="flex items-start"> |
|
|
<div class="flex-shrink-0"> |
|
|
<i data-feather="message-square" class="text-primary-500 w-8 h-8"></i> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<p class="text-gray-700 italic"> |
|
|
"Die Analyse hat mehrere Optimierungsmöglichkeiten aufgezeigt, die wir nicht bedacht hatten. Innerhalb weniger Wochen nach der Umsetzung stieg unsere Lead-Konversion um 32%." |
|
|
</p> |
|
|
<div class="mt-4 flex items-center"> |
|
|
<div class="flex-shrink-0"> |
|
|
<img class="h-10 w-10 rounded-full" src="http://static.photos/people/200x200/1" alt=""> |
|
|
</div> |
|
|
<div class="ml-3"> |
|
|
<p class="text-sm font-medium text-gray-900">Sarah Müller</p> |
|
|
<p class="text-sm text-gray-500">CEO, MedSolutions</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<footer class="bg-gray-900 text-white pt-12 pb-8"> |
|
|
<div class="container mx-auto px-6"> |
|
|
<div class="flex flex-col md:flex-row justify-between"> |
|
|
<div class="mb-8 md:mb-0"> |
|
|
<h3 class="text-xl font-bold mb-4">WebWizard Analyse</h3> |
|
|
<p class="text-gray-400 max-w-md"> |
|
|
Wir helfen Unternehmen in Aachen, Düren, Heinsberg und darüber hinaus seit 2013, das volle Potential ihrer Website zu entfalten. |
|
|
</p> |
|
|
</div> |
|
|
<div class="grid grid-cols-2 gap-8"> |
|
|
<div> |
|
|
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Rechtliches</h4> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-300 hover:text-white">Datenschutz</a></li> |
|
|
<li><a href="#" class="text-gray-300 hover:text-white">Nutzungsbedingungen</a></li> |
|
|
<li><a href="#" class="text-gray-300 hover:text-white">Impressum</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Kontakt</h4> |
|
|
<ul class="space-y-2"> |
|
|
<li class="flex items-center"> |
|
|
<i data-feather="mail" class="w-4 h-4 mr-2"></i> |
|
|
<a href="mailto:analysis@webwizard.de" class="text-gray-300 hover:text-white">analysis@webwizard.de</a> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i data-feather="phone" class="w-4 h-4 mr-2"></i> |
|
|
<a href="tel:+49123456789" class="text-gray-300 hover:text-white">+49 123 456789</a> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="mt-12 pt-8 border-t border-gray-800 text-sm text-gray-400 text-center"> |
|
|
<p>© 2023 WebWizard Analyse. Alle Rechte vorbehalten.</p> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
|
|
|
<script> |
|
|
feather.replace(); |
|
|
|
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
|
anchor.addEventListener('click', function (e) { |
|
|
e.preventDefault(); |
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({ |
|
|
behavior: 'smooth' |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
</script> |
|
|
</body> |
|
|
</html> |
|
|
|