jitware commited on
Commit
4ead5e6
·
verified ·
1 Parent(s): 9cb16ca

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +273 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Seo Audit
3
- emoji: 👀
4
  colorFrom: green
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: seo-audit
3
+ emoji: 🐳
4
  colorFrom: green
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,273 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="nl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Gratis SEO Audit | Jitware</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ gold: {
15
+ light: '#F5E6B3',
16
+ DEFAULT: '#D4AF37',
17
+ dark: '#B7950B'
18
+ },
19
+ dark: '#111111',
20
+ darker: '#0A0A0A'
21
+ }
22
+ }
23
+ }
24
+ }
25
+ </script>
26
+ <style>
27
+ .gold-accent {
28
+ background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.15) 100%);
29
+ }
30
+ .gold-border {
31
+ border-image: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent) 1;
32
+ }
33
+ .hover-glow:hover {
34
+ box-shadow: 0 0 15px rgba(212,175,55,0.3);
35
+ }
36
+ .gold-gradient-text {
37
+ background-clip: text;
38
+ -webkit-background-clip: text;
39
+ color: transparent;
40
+ background-image: linear-gradient(to right, #F5E6B3, #D4AF37, #B7950B);
41
+ }
42
+ </style>
43
+ </head>
44
+ <body class="bg-dark text-gray-200 font-sans">
45
+ <!-- Header -->
46
+ <header class="bg-darker border-b border-gold/10 py-6">
47
+ <div class="container mx-auto px-4 flex justify-between items-center">
48
+ <div class="flex items-center space-x-2">
49
+ <i class="fas fa-code text-gold text-2xl"></i>
50
+ <span class="text-xl font-bold text-gold">JITWARE</span>
51
+ </div>
52
+ <nav class="hidden md:flex space-x-8">
53
+ <a href="#" class="hover:text-gold transition duration-300">Diensten</a>
54
+ <a href="#" class="hover:text-gold transition duration-300">Cases</a>
55
+ <a href="#" class="hover:text-gold transition duration-300">Over ons</a>
56
+ <a href="#" class="hover:text-gold transition duration-300">Blog</a>
57
+ <a href="#" class="hover:text-gold transition duration-300">Contact</a>
58
+ </nav>
59
+ <button class="md:hidden text-gold">
60
+ <i class="fas fa-bars text-2xl"></i>
61
+ </button>
62
+ </div>
63
+ </header>
64
+
65
+ <!-- Hero Section -->
66
+ <section class="relative py-20 bg-darker">
67
+ <div class="absolute inset-0 overflow-hidden">
68
+ <div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1639762681057-408e52197e23?q=80&w=2232&auto=format&fit=crop')] bg-cover bg-center opacity-10"></div>
69
+ <div class="absolute inset-0 bg-gradient-to-t from-dark via-dark/80 to-dark"></div>
70
+ </div>
71
+ <div class="container mx-auto px-4 text-center relative">
72
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 gold-gradient-text">GRATIS SEO AUDIT</h1>
73
+ <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Ontdek hoe goed uw website scoort in zoekmachines en krijg direct bruikbare tips om hoger te ranken.</p>
74
+ <div class="max-w-md mx-auto">
75
+ <form class="space-y-4">
76
+ <input type="text" placeholder="Uw website URL" class="w-full px-4 py-3 bg-dark border border-gold/20 rounded focus:outline-none focus:ring-1 focus:ring-gold text-white placeholder-gray-400">
77
+ <input type="email" placeholder="Uw e-mailadres" class="w-full px-4 py-3 bg-dark border border-gold/20 rounded focus:outline-none focus:ring-1 focus:ring-gold text-white placeholder-gray-400">
78
+ <button type="submit" class="w-full bg-gradient-to-r from-gold.light via-gold to-gold.dark hover:from-gold.dark hover:to-gold.light text-darker font-bold py-3 px-6 rounded transition duration-300 hover-glow">
79
+ AUDIT AANVRAGEN <i class="fas fa-arrow-right ml-2"></i>
80
+ </button>
81
+ </form>
82
+ </div>
83
+ </div>
84
+ </section>
85
+
86
+ <!-- What You Get Section -->
87
+ <section class="py-20 bg-dark">
88
+ <div class="container mx-auto px-4">
89
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center text-gold border-b border-gold/20 pb-6">WAT KRIJG JE IN ONZE SEO AUDIT?</h2>
90
+
91
+ <div class="grid md:grid-cols-3 gap-8">
92
+ <!-- Item 1 -->
93
+ <div class="bg-darker p-8 rounded-lg border border-gold/10 hover-glow transition duration-300 gold-accent">
94
+ <div class="text-gold text-4xl mb-4">
95
+ <i class="fas fa-chart-line"></i>
96
+ </div>
97
+ <h3 class="text-xl font-bold mb-3 text-gold">Prestatie Analyse</h3>
98
+ <p class="text-gray-400">We meten de laadsnelheid en technische prestaties van uw website die cruciaal zijn voor SEO.</p>
99
+ </div>
100
+
101
+ <!-- Item 2 -->
102
+ <div class="bg-darker p-8 rounded-lg border border-gold/10 hover-glow transition duration-300 gold-accent">
103
+ <div class="text-gold text-4xl mb-4">
104
+ <i class="fas fa-search"></i>
105
+ </div>
106
+ <h3 class="text-xl font-bold mb-3 text-gold">Zoekwoord Optimalisatie</h3>
107
+ <p class="text-gray-400">Analyse van hoe goed uw website is geoptimaliseerd voor relevante zoekwoorden.</p>
108
+ </div>
109
+
110
+ <!-- Item 3 -->
111
+ <div class="bg-darker p-8 rounded-lg border border-gold/10 hover-glow transition duration-300 gold-accent">
112
+ <div class="text-gold text-4xl mb-4">
113
+ <i class="fas fa-mobile-alt"></i>
114
+ </div>
115
+ <h3 class="text-xl font-bold mb-3 text-gold">Mobiele Compatibiliteit</h3>
116
+ <p class="text-gray-400">Evaluatie van hoe goed uw website presteert op mobiele apparaten.</p>
117
+ </div>
118
+
119
+ <!-- Item 4 -->
120
+ <div class="bg-darker p-8 rounded-lg border border-gold/10 hover-glow transition duration-300 gold-accent">
121
+ <div class="text-gold text-4xl mb-4">
122
+ <i class="fas fa-link"></i>
123
+ </div>
124
+ <h3 class="text-xl font-bold mb-3 text-gold">Link Analyse</h3>
125
+ <p class="text-gray-400">Overzicht van interne en externe links die van invloed zijn op uw ranking.</p>
126
+ </div>
127
+
128
+ <!-- Item 5 -->
129
+ <div class="bg-darker p-8 rounded-lg border border-gold/10 hover-glow transition duration-300 gold-accent">
130
+ <div class="text-gold text-4xl mb-4">
131
+ <i class="fas fa-file-alt"></i>
132
+ </div>
133
+ <h3 class="text-xl font-bold mb-3 text-gold">Content Evaluatie</h3>
134
+ <p class="text-gray-400">Beoordeling van de kwaliteit en relevantie van uw website content.</p>
135
+ </div>
136
+
137
+ <!-- Item 6 -->
138
+ <div class="bg-darker p-8 rounded-lg border border-gold/10 hover-glow transition duration-300 gold-accent">
139
+ <div class="text-gold text-4xl mb-4">
140
+ <i class="fas fa-tools"></i>
141
+ </div>
142
+ <h3 class="text-xl font-bold mb-3 text-gold">Actieplan</h3>
143
+ <p class="text-gray-400">Een duidelijk stappenplan met prioriteiten om uw SEO te verbeteren.</p>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </section>
148
+
149
+ <!-- Testimonials -->
150
+ <section class="py-20 bg-darker">
151
+ <div class="container mx-auto px-4">
152
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center text-gold border-b border-gold/20 pb-6">WAT KLANTEN ZEGGEN</h2>
153
+
154
+ <div class="grid md:grid-cols-2 gap-8 max-w-6xl mx-auto">
155
+ <!-- Testimonial 1 -->
156
+ <div class="bg-dark p-8 rounded-lg border-l-4 border-gold relative gold-accent">
157
+ <div class="absolute -top-4 -left-4 text-gold text-4xl">
158
+ <i class="fas fa-quote-left"></i>
159
+ </div>
160
+ <p class="mb-6 italic text-gray-300">"De SEO-audit van Jitware gaf ons precies de inzichten die we nodig hadden. Binnen een maand zagen we al een stijging van 40% in organisch verkeer."</p>
161
+ <div class="flex items-center">
162
+ <div class="w-12 h-12 rounded-full bg-gold/20 flex items-center justify-center text-gold mr-4">
163
+ <i class="fas fa-user"></i>
164
+ </div>
165
+ <div>
166
+ <h4 class="font-bold text-gold">Mark Janssens</h4>
167
+ <p class="text-sm text-gray-400">CEO, RetailCompany</p>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Testimonial 2 -->
173
+ <div class="bg-dark p-8 rounded-lg border-l-4 border-gold relative gold-accent">
174
+ <div class="absolute -top-4 -left-4 text-gold text-4xl">
175
+ <i class="fas fa-quote-left"></i>
176
+ </div>
177
+ <p class="mb-6 italic text-gray-300">"Als kleine ondernemer had ik geen idee waar te beginnen met SEO. De gratis audit gaf me een duidelijk actieplan dat ik direct kon implementeren."</p>
178
+ <div class="flex items-center">
179
+ <div class="w-12 h-12 rounded-full bg-gold/20 flex items-center justify-center text-gold mr-4">
180
+ <i class="fas fa-user"></i>
181
+ </div>
182
+ <div>
183
+ <h4 class="font-bold text-gold">Lisa Verhoeven</h4>
184
+ <p class="text-sm text-gray-400">Eigenaar, LocalShop</p>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </section>
191
+
192
+ <!-- CTA Section -->
193
+ <section class="py-20 bg-dark">
194
+ <div class="container mx-auto px-4 text-center">
195
+ <div class="max-w-4xl mx-auto bg-darker p-12 rounded-xl border border-gold/10 gold-accent">
196
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 text-gold">KLAAR OM UW SEO TE OPTIMALISEREN?</h2>
197
+ <p class="text-xl mb-10 max-w-2xl mx-auto">Vraag nu uw gratis SEO-audit aan en ontvang binnen 48 uur een gedetailleerd rapport.</p>
198
+ <button class="bg-gradient-to-r from-gold.light via-gold to-gold.dark hover:from-gold.dark hover:to-gold.light text-darker font-bold py-3 px-8 rounded-full transition duration-300 hover-glow text-lg">
199
+ START NU <i class="fas fa-arrow-right ml-2"></i>
200
+ </button>
201
+ </div>
202
+ </div>
203
+ </section>
204
+
205
+ <!-- Footer -->
206
+ <footer class="bg-darker py-12 border-t border-gold/10">
207
+ <div class="container mx-auto px-4">
208
+ <div class="grid md:grid-cols-4 gap-10">
209
+ <div>
210
+ <div class="flex items-center space-x-2 mb-4">
211
+ <i class="fas fa-code text-gold text-2xl"></i>
212
+ <span class="text-xl font-bold text-gold">JITWARE</span>
213
+ </div>
214
+ <p class="text-gray-400 mb-4">Specialisten in digitale transformatie en weboptimalisatie.</p>
215
+ <div class="flex space-x-4">
216
+ <a href="#" class="text-gold hover:text-gold/80"><i class="fab fa-linkedin-in"></i></a>
217
+ <a href="#" class="text-gold hover:text-gold/80"><i class="fab fa-facebook-f"></i></a>
218
+ <a href="#" class="text-gold hover:text-gold/80"><i class="fab fa-instagram"></i></a>
219
+ <a href="#" class="text-gold hover:text-gold/80"><i class="fab fa-twitter"></i></a>
220
+ </div>
221
+ </div>
222
+
223
+ <div>
224
+ <h4 class="text-gold font-bold mb-4 text-lg">Diensten</h4>
225
+ <ul class="space-y-2">
226
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">Webontwikkeling</a></li>
227
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">SEO Optimalisatie</a></li>
228
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">E-commerce</a></li>
229
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">UX/UI Design</a></li>
230
+ </ul>
231
+ </div>
232
+
233
+ <div>
234
+ <h4 class="text-gold font-bold mb-4 text-lg">Bedrijf</h4>
235
+ <ul class="space-y-2">
236
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">Over ons</a></li>
237
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">Team</a></li>
238
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">Cases</a></li>
239
+ <li><a href="#" class="text-gray-400 hover:text-gold transition">Vacatures</a></li>
240
+ </ul>
241
+ </div>
242
+
243
+ <div>
244
+ <h4 class="text-gold font-bold mb-4 text-lg">Contact</h4>
245
+ <ul class="space-y-2">
246
+ <li class="text-gray-400"><i class="fas fa-map-marker-alt text-gold mr-2"></i> Bedrijfsstraat 123, 1000 Brussel</li>
247
+ <li class="text-gray-400"><i class="fas fa-phone text-gold mr-2"></i> +32 123 45 67 89</li>
248
+ <li class="text-gray-400"><i class="fas fa-envelope text-gold mr-2"></i> [email protected]</li>
249
+ </ul>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="border-t border-gold/10 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
254
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 Jitware. Alle rechten voorbehouden.</p>
255
+ <div class="flex space-x-6">
256
+ <a href="#" class="text-gray-500 hover:text-gold text-sm">Privacybeleid</a>
257
+ <a href="#" class="text-gray-500 hover:text-gold text-sm">Algemene voorwaarden</a>
258
+ <a href="#" class="text-gray-500 hover:text-gold text-sm">Cookiebeleid</a>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </footer>
263
+
264
+ <script>
265
+ // Simple form submission handler
266
+ document.querySelector('form').addEventListener('submit', function(e) {
267
+ e.preventDefault();
268
+ alert('Bedankt voor uw aanvraag! We sturen uw SEO-audit binnen 48 uur naar uw e-mailadres.');
269
+ this.reset();
270
+ });
271
+ </script>
272
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=jitware/seo-audit" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
273
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gelieve deze pagina minimalistisch in het zwart op te bouwen met met goud/gele accenten: https://www.jitware.be/gratis-seo-audit/
2
+ maak de gele achtergronden mee rprofesisoneleren