Eckhardt12 commited on
Commit
ee1ba36
·
verified ·
1 Parent(s): f9f4c30

bitte alles auf deutsch

Browse files
Files changed (2) hide show
  1. index.html +50 -51
  2. thankyou.html +14 -14
index.html CHANGED
@@ -3,8 +3,8 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Free Website Analysis | WebWizard</title>
7
- <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://unpkg.com/feather-icons"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
@@ -36,28 +36,28 @@
36
  <!-- Hero Section -->
37
  <div class="hero-pattern bg-primary-700 text-white min-h-screen flex items-center">
38
  <div class="container mx-auto px-6 py-24 text-center backdrop-brightness-75">
39
- <h1 class="text-4xl md:text-6xl font-bold mb-6">Free Website Analysis</h1>
40
  <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">
41
- Discover your website's hidden potential in just 15 minutes. We'll show you how to get more visibility and customers.
42
- </p>
43
  <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">
44
- Start Free Analysis
45
- <i data-feather="arrow-down" class="ml-2"></i>
46
  </a>
47
 
48
  <div class="mt-20 flex justify-center space-x-12 opacity-90">
49
  <div class="text-center">
50
  <div class="text-3xl font-bold">10+</div>
51
- <div class="text-sm uppercase tracking-wider">Years Experience</div>
52
  </div>
53
  <div class="text-center">
54
  <div class="text-3xl font-bold">500+</div>
55
- <div class="text-sm uppercase tracking-wider">Websites Analyzed</div>
56
  </div>
57
  <div class="text-center">
58
  <div class="text-3xl font-bold">100%</div>
59
- <div class="text-sm uppercase tracking-wider">Satisfaction</div>
60
- </div>
61
  </div>
62
  </div>
63
  </div>
@@ -67,27 +67,27 @@
67
  <div class="container mx-auto px-6 max-w-4xl">
68
  <div class="bg-white rounded-xl shadow-xl overflow-hidden">
69
  <div class="p-8 sm:p-10">
70
- <h2 class="text-2xl md:text-3xl font-bold text-gray-800 mb-6">Get Your Free Analysis</h2>
71
- <form class="space-y-6">
72
  <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
73
  <div>
74
- <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
75
- <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>
76
  </div>
77
  <div>
78
- <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
79
- <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>
80
  </div>
81
  </div>
82
 
83
  <div>
84
- <label for="website" class="block text-sm font-medium text-gray-700 mb-1">Website URL</label>
85
- <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://">
86
  </div>
87
 
88
  <div>
89
- <label class="block text-sm font-medium text-gray-700 mb-1">Monthly Visitors</label>
90
- <div class="grid grid-cols-3 gap-3">
91
  <label class="inline-flex items-center">
92
  <input type="radio" name="visitors" value="<100" class="h-4 w-4 text-primary-600 focus:ring-primary-500">
93
  <span class="ml-2 text-gray-700"><100</span>
@@ -104,19 +104,19 @@
104
  </div>
105
 
106
  <div>
107
- <label class="block text-sm font-medium text-gray-700 mb-1">What would you like to improve?</label>
108
  <select class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent">
109
- <option>More visibility</option>
110
- <option>More leads</option>
111
- <option>New design</option>
112
- <option>Better performance</option>
113
- <option>All of the above</option>
114
- </select>
115
  </div>
116
 
117
  <div>
118
- <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Additional Notes (optional)</label>
119
- <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>
120
  </div>
121
 
122
  <div class="flex items-start">
@@ -124,14 +124,14 @@
124
  <input id="terms" name="terms" type="checkbox" class="focus:ring-primary-500 h-4 w-4 text-primary-600 border-gray-300 rounded" required>
125
  </div>
126
  <div class="ml-3 text-sm">
127
- <label for="terms" class="font-medium text-gray-700">I agree to the privacy policy and terms of service</label>
128
- </div>
129
  </div>
130
 
131
  <div>
132
  <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">
133
- Request Free Analysis
134
- <i data-feather="send" class="ml-2"></i>
135
  </button>
136
  </div>
137
  </form>
@@ -143,9 +143,8 @@
143
  <!-- Trust Section -->
144
  <section class="py-16 bg-gray-50">
145
  <div class="container mx-auto px-6">
146
- <h2 class="text-2xl font-bold text-center text-gray-800 mb-12">Trusted by Professionals Across Industries</h2>
147
-
148
- <div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center justify-center">
149
  <div class="flex justify-center">
150
  <div class="bg-white p-6 rounded-xl shadow-sm flex items-center justify-center h-24">
151
  <span class="text-2xl font-bold text-gray-700">Medical</span>
@@ -176,8 +175,8 @@
176
  </div>
177
  <div class="ml-4">
178
  <p class="text-gray-700 italic">
179
- "The analysis revealed several optimization opportunities we hadn't considered. Within weeks of implementation, our lead conversion increased by 32%."
180
- </p>
181
  <div class="mt-4 flex items-center">
182
  <div class="flex-shrink-0">
183
  <img class="h-10 w-10 rounded-full" src="http://static.photos/people/200x200/1" alt="">
@@ -199,23 +198,23 @@
199
  <div class="container mx-auto px-6">
200
  <div class="flex flex-col md:flex-row justify-between">
201
  <div class="mb-8 md:mb-0">
202
- <h3 class="text-xl font-bold mb-4">WebWizard Analysis</h3>
203
  <p class="text-gray-400 max-w-md">
204
- Helping businesses in Aachen, Düren, Heinsberg and beyond unlock their website's full potential since 2013.
205
- </p>
206
  </div>
207
  <div class="grid grid-cols-2 gap-8">
208
  <div>
209
- <h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Legal</h4>
210
  <ul class="space-y-2">
211
- <li><a href="#" class="text-gray-300 hover:text-white">Privacy Policy</a></li>
212
- <li><a href="#" class="text-gray-300 hover:text-white">Terms of Service</a></li>
213
- <li><a href="#" class="text-gray-300 hover:text-white">Imprint</a></li>
214
- </ul>
215
  </div>
216
  <div>
217
- <h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Contact</h4>
218
- <ul class="space-y-2">
219
  <li class="flex items-center">
220
  <i data-feather="mail" class="w-4 h-4 mr-2"></i>
221
  <a href="mailto:analysis@webwizard.de" class="text-gray-300 hover:text-white">analysis@webwizard.de</a>
@@ -229,8 +228,8 @@
229
  </div>
230
  </div>
231
  <div class="mt-12 pt-8 border-t border-gray-800 text-sm text-gray-400 text-center">
232
- <p>© 2023 WebWizard Analysis. All rights reserved.</p>
233
- </div>
234
  </div>
235
  </footer>
236
 
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Kostenlose Website-Analyse | WebWizard</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://unpkg.com/feather-icons"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
 
36
  <!-- Hero Section -->
37
  <div class="hero-pattern bg-primary-700 text-white min-h-screen flex items-center">
38
  <div class="container mx-auto px-6 py-24 text-center backdrop-brightness-75">
39
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Kostenlose Website-Analyse</h1>
40
  <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">
41
+ Entdecken Sie das versteckte Potential Ihrer Website in nur 15 Minuten. Wir zeigen Ihnen, wie Sie mehr Sichtbarkeit und Kunden gewinnen.
42
+ </p>
43
  <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">
44
+ Kostenlose Analyse starten
45
+ <i data-feather="arrow-down" class="ml-2"></i>
46
  </a>
47
 
48
  <div class="mt-20 flex justify-center space-x-12 opacity-90">
49
  <div class="text-center">
50
  <div class="text-3xl font-bold">10+</div>
51
+ <div class="text-sm uppercase tracking-wider">Jahre Erfahrung</div>
52
  </div>
53
  <div class="text-center">
54
  <div class="text-3xl font-bold">500+</div>
55
+ <div class="text-sm uppercase tracking-wider">Analysierte Websites</div>
56
  </div>
57
  <div class="text-center">
58
  <div class="text-3xl font-bold">100%</div>
59
+ <div class="text-sm uppercase tracking-wider">Zufriedenheit</div>
60
+ </div>
61
  </div>
62
  </div>
63
  </div>
 
67
  <div class="container mx-auto px-6 max-w-4xl">
68
  <div class="bg-white rounded-xl shadow-xl overflow-hidden">
69
  <div class="p-8 sm:p-10">
70
+ <h2 class="text-2xl md:text-3xl font-bold text-gray-800 mb-6">Fordern Sie Ihre kostenlose Analyse an</h2>
71
+ <form class="space-y-6">
72
  <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
73
  <div>
74
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Ihr Name</label>
75
+ <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>
76
  </div>
77
  <div>
78
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">E-Mail Adresse</label>
79
+ <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>
80
  </div>
81
  </div>
82
 
83
  <div>
84
+ <label for="website" class="block text-sm font-medium text-gray-700 mb-1">Website-URL</label>
85
+ <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://">
86
  </div>
87
 
88
  <div>
89
+ <label class="block text-sm font-medium text-gray-700 mb-1">Monatliche Besucher</label>
90
+ <div class="grid grid-cols-3 gap-3">
91
  <label class="inline-flex items-center">
92
  <input type="radio" name="visitors" value="<100" class="h-4 w-4 text-primary-600 focus:ring-primary-500">
93
  <span class="ml-2 text-gray-700"><100</span>
 
104
  </div>
105
 
106
  <div>
107
+ <label class="block text-sm font-medium text-gray-700 mb-1">Was möchten Sie verbessern?</label>
108
  <select class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-transparent">
109
+ <option>Mehr Sichtbarkeit</option>
110
+ <option>Mehr Leads</option>
111
+ <option>Neues Design</option>
112
+ <option>Bessere Performance</option>
113
+ <option>Alles oben Genannte</option>
114
+ </select>
115
  </div>
116
 
117
  <div>
118
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Zusätzliche Anmerkungen (optional)</label>
119
+ <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>
120
  </div>
121
 
122
  <div class="flex items-start">
 
124
  <input id="terms" name="terms" type="checkbox" class="focus:ring-primary-500 h-4 w-4 text-primary-600 border-gray-300 rounded" required>
125
  </div>
126
  <div class="ml-3 text-sm">
127
+ <label for="terms" class="font-medium text-gray-700">Ich stimme der Datenschutzerklärung und den Nutzungsbedingungen zu</label>
128
+ </div>
129
  </div>
130
 
131
  <div>
132
  <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">
133
+ Kostenlose Analyse anfordern
134
+ <i data-feather="send" class="ml-2"></i>
135
  </button>
136
  </div>
137
  </form>
 
143
  <!-- Trust Section -->
144
  <section class="py-16 bg-gray-50">
145
  <div class="container mx-auto px-6">
146
+ <h2 class="text-2xl font-bold text-center text-gray-800 mb-12">Vertrauen von Fachleuten aus verschiedenen Branchen</h2>
147
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center justify-center">
 
148
  <div class="flex justify-center">
149
  <div class="bg-white p-6 rounded-xl shadow-sm flex items-center justify-center h-24">
150
  <span class="text-2xl font-bold text-gray-700">Medical</span>
 
175
  </div>
176
  <div class="ml-4">
177
  <p class="text-gray-700 italic">
178
+ "Die Analyse hat mehrere Optimierungsmöglichkeiten aufgezeigt, die wir nicht bedacht hatten. Innerhalb weniger Wochen nach der Umsetzung stieg unsere Lead-Konversion um 32%."
179
+ </p>
180
  <div class="mt-4 flex items-center">
181
  <div class="flex-shrink-0">
182
  <img class="h-10 w-10 rounded-full" src="http://static.photos/people/200x200/1" alt="">
 
198
  <div class="container mx-auto px-6">
199
  <div class="flex flex-col md:flex-row justify-between">
200
  <div class="mb-8 md:mb-0">
201
+ <h3 class="text-xl font-bold mb-4">WebWizard Analyse</h3>
202
  <p class="text-gray-400 max-w-md">
203
+ Wir helfen Unternehmen in Aachen, Düren, Heinsberg und darüber hinaus seit 2013, das volle Potential ihrer Website zu entfalten.
204
+ </p>
205
  </div>
206
  <div class="grid grid-cols-2 gap-8">
207
  <div>
208
+ <h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Rechtliches</h4>
209
  <ul class="space-y-2">
210
+ <li><a href="#" class="text-gray-300 hover:text-white">Datenschutz</a></li>
211
+ <li><a href="#" class="text-gray-300 hover:text-white">Nutzungsbedingungen</a></li>
212
+ <li><a href="#" class="text-gray-300 hover:text-white">Impressum</a></li>
213
+ </ul>
214
  </div>
215
  <div>
216
+ <h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Kontakt</h4>
217
+ <ul class="space-y-2">
218
  <li class="flex items-center">
219
  <i data-feather="mail" class="w-4 h-4 mr-2"></i>
220
  <a href="mailto:analysis@webwizard.de" class="text-gray-300 hover:text-white">analysis@webwizard.de</a>
 
228
  </div>
229
  </div>
230
  <div class="mt-12 pt-8 border-t border-gray-800 text-sm text-gray-400 text-center">
231
+ <p>© 2023 WebWizard Analyse. Alle Rechte vorbehalten.</p>
232
+ </div>
233
  </div>
234
  </footer>
235
 
thankyou.html CHANGED
@@ -3,8 +3,8 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Thank You | WebWizard Analysis</title>
7
- <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://unpkg.com/feather-icons"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
@@ -21,37 +21,37 @@
21
  <div class="mx-auto flex items-center justify-center h-16 w-16 rounded-full bg-green-100 mb-6">
22
  <i data-feather="check" class="h-8 w-8 text-green-600"></i>
23
  </div>
24
- <h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Perfect! Your Analysis Is On Its Way</h1>
25
  <p class="text-lg text-gray-600 mb-8">
26
- We're now reviewing your website and will get back to you shortly with a personalized assessment. Check your inbox for a confirmation email.
27
- </p>
28
 
29
  <div class="bg-blue-50 rounded-lg p-6 mb-8">
30
- <h3 class="text-lg font-medium text-blue-800 mb-4">Want faster results?</h3>
31
  <p class="text-blue-700 mb-4">
32
- Schedule a free 30-minute consultation call to discuss your analysis results directly with our expert.
33
  </p>
34
  <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary-500 hover:bg-primary-600 transition-all duration-300">
35
  <i data-feather="calendar" class="mr-2"></i>
36
- Book Your Free Call Now
37
- </a>
38
  </div>
39
 
40
  <div class="flex flex-col sm:flex-row justify-center gap-4 mt-8">
41
  <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-primary-700 bg-primary-100 hover:bg-primary-200 transition-all duration-300">
42
  <i data-feather="arrow-left" class="mr-2"></i>
43
- Back to Home
44
  </a>
45
  <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-gray-700 bg-gray-100 hover:bg-gray-200 transition-all duration-300">
46
  <i data-feather="help-circle" class="mr-2"></i>
47
- Frequently Asked Questions
48
- </a>
49
  </div>
50
  </div>
51
 
52
  <div class="mt-12 text-center text-gray-500 text-sm">
53
- <p>Didn't receive our confirmation email? Check your spam folder or <a href="#" class="text-primary-600 hover:text-primary-700">contact support</a>.</p>
54
- </div>
55
  </div>
56
  </div>
57
 
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Danke | WebWizard Analyse</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://unpkg.com/feather-icons"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
 
21
  <div class="mx-auto flex items-center justify-center h-16 w-16 rounded-full bg-green-100 mb-6">
22
  <i data-feather="check" class="h-8 w-8 text-green-600"></i>
23
  </div>
24
+ <h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Perfekt! Ihre Analyse ist unterwegs</h1>
25
  <p class="text-lg text-gray-600 mb-8">
26
+ Wir überprüfen jetzt Ihre Website und melden uns bald mit einer persönlichen Bewertung. Prüfen Sie Ihren Posteingang auf eine Bestätigungs-E-Mail.
27
+ </p>
28
 
29
  <div class="bg-blue-50 rounded-lg p-6 mb-8">
30
+ <h3 class="text-lg font-medium text-blue-800 mb-4">Schnellere Ergebnisse?</h3>
31
  <p class="text-blue-700 mb-4">
32
+ Vereinbaren Sie ein kostenloses 30-minütiges Beratungsgespräch, um Ihre Analyseergebnisse direkt mit unserem Experten zu besprechen.
33
  </p>
34
  <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary-500 hover:bg-primary-600 transition-all duration-300">
35
  <i data-feather="calendar" class="mr-2"></i>
36
+ Jetzt kostenlosen Termin buchen
37
+ </a>
38
  </div>
39
 
40
  <div class="flex flex-col sm:flex-row justify-center gap-4 mt-8">
41
  <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-primary-700 bg-primary-100 hover:bg-primary-200 transition-all duration-300">
42
  <i data-feather="arrow-left" class="mr-2"></i>
43
+ Zurück zur Startseite
44
  </a>
45
  <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-gray-700 bg-gray-100 hover:bg-gray-200 transition-all duration-300">
46
  <i data-feather="help-circle" class="mr-2"></i>
47
+ Häufige Fragen
48
+ </a>
49
  </div>
50
  </div>
51
 
52
  <div class="mt-12 text-center text-gray-500 text-sm">
53
+ <p>Keine Bestätigungs-E-Mail erhalten? Prüfen Sie Ihren Spam-Ordner oder <a href="#" class="text-primary-600 hover:text-primary-700">kontaktieren Sie unseren Support</a>.</p>
54
+ </div>
55
  </div>
56
  </div>
57