jensvde commited on
Commit
40ad7dd
·
verified ·
1 Parent(s): 4dac2bf

landingspagina voor mensen die opzoek over: rubberdaken

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +313 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Rubberroofrevolution
3
- emoji: 🐠
4
- colorFrom: indigo
5
- colorTo: purple
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: RubberRoofRevolution 🏠
3
+ colorFrom: pink
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,314 @@
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>RubberRoofRevolution - Uw Specialist in Rubberdaken</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/vanta@latest/dist/vanta.net.min.js"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: {
17
+ 50: '#f0f9ff',
18
+ 100: '#e0f2fe',
19
+ 200: '#bae6fd',
20
+ 300: '#7dd3fc',
21
+ 400: '#38bdf8',
22
+ 500: '#0ea5e9',
23
+ 600: '#0284c7',
24
+ 700: '#0369a1',
25
+ 800: '#075985',
26
+ 900: '#0c4a6e',
27
+ },
28
+ secondary: {
29
+ 50: '#fefce8',
30
+ 100: '#fef9c3',
31
+ 200: '#fef08a',
32
+ 300: '#fde047',
33
+ 400: '#facc15',
34
+ 500: '#eab308',
35
+ 600: '#ca8a04',
36
+ 700: '#a16207',
37
+ 800: '#854d0e',
38
+ 900: '#713f12',
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
44
+ </script>
45
+ <style>
46
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
47
+ body {
48
+ font-family: 'Inter', sans-serif;
49
+ }
50
+ .hero-gradient {
51
+ background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
52
+ }
53
+ .feature-card:hover {
54
+ transform: translateY(-5px);
55
+ transition: all 0.3s ease;
56
+ }
57
+ .floating {
58
+ animation: floating 3s ease-in-out infinite;
59
+ }
60
+ @keyframes floating {
61
+ 0% { transform: translate(0, 0px); }
62
+ 50% { transform: translate(0, -15px); }
63
+ 100% { transform: translate(0, -0px); }
64
+ }
65
+ </style>
66
+ </head>
67
+ <body class="bg-gray-50">
68
+ <!-- Navigation -->
69
+ <nav class="bg-white shadow-lg sticky top-0 z-50">
70
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
71
+ <div class="flex justify-between h-16">
72
+ <div class="flex items-center">
73
+ <div class="flex-shrink-0 flex items-center">
74
+ <i data-feather="home" class="h-8 w-8 text-primary-600"></i>
75
+ <span class="ml-2 text-xl font-bold text-gray-900">RubberRoofRevolution</span>
76
+ </div>
77
+ </div>
78
+ <div class="hidden md:flex items-center space-x-8">
79
+ <a href="#home" class="text-gray-700 hover:text-primary-600 px-3 py-2 rounded-md text-sm font-medium">Home</a>
80
+ <a href="#diensten" class="text-gray-700 hover:text-primary-600 px-3 py-2 rounded-md text-sm font-medium">Diensten</a>
81
+ <a href="#voordelen" class="text-gray-700 hover:text-primary-600 px-3 py-2 rounded-md text-sm font-medium">Voordelen</a>
82
+ <a href="#projecten" class="text-gray-700 hover:text-primary-600 px-3 py-2 rounded-md text-sm font-medium">Projecten</a>
83
+ <a href="#contact" class="bg-primary-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-primary-700">Contact</a>
84
+ </div>
85
+ <div class="md:hidden flex items-center">
86
+ <button class="mobile-menu-button">
87
+ <i data-feather="menu" class="h-6 w-6 text-gray-700"></i>
88
+ </button>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ <!-- Mobile Menu -->
93
+ <div class="mobile-menu hidden md:hidden">
94
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-white border-t">
95
+ <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-primary-600">Home</a>
96
+ <a href="#diensten" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-primary-600">Diensten</a>
97
+ <a href="#voordelen" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-primary-600">Voordelen</a>
98
+ <a href="#projecten" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-primary-600">Projecten</a>
99
+ <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-primary-600 hover:bg-primary-700">Contact</a>
100
+ </div>
101
+ </div>
102
+ </nav>
103
+
104
+ <!-- Hero Section -->
105
+ <section id="home" class="hero-gradient text-white">
106
+ <div id="vanta-bg" class="min-h-screen flex items-center justify-center relative overflow-hidden">
107
+ <div class="absolute inset-0 bg-black opacity-20"></div>
108
+ <div class="relative z-10 text-center px-4 max-w-4xl mx-auto">
109
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 floating">Revolutioneer Uw Dak</h1>
110
+ <p class="text-xl md:text-2xl mb-8 opacity-90">Professionele rubberdaken voor een waterdichte toekomst. Duurzaam, betrouwbaar en energiezuinig.</p>
111
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
112
+ <button class="bg-secondary-500 hover:bg-secondary-600 text-white px-8 py-3 rounded-lg font-semibold text-lg transition duration-300 transform hover:scale-105">
113
+ Gratis Offerte
114
+ </button>
115
+ <button class="border-2 border-white hover:bg-white hover:text-primary-700 text-white px-8 py-3 rounded-lg font-semibold text-lg transition duration-300">
116
+ Onze Projecten
117
+ </button>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- Diensten Section -->
124
+ <section id="diensten" class="py-20 bg-white">
125
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
126
+ <div class="text-center mb-16">
127
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Onze Specialistische Diensten</h2>
128
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">Van aanleg tot onderhoud, wij bieden complete oplossingen voor uw rubberdak</p>
129
+ </div>
130
+ <div class="grid md:grid-cols-3 gap-8">
131
+ <div class="feature-card bg-gray-50 p-8 rounded-xl shadow-lg hover:shadow-xl">
132
+ <div class="w-16 h-16 bg-primary-100 rounded-full flex items-center justify-center mb-6">
133
+ <i data-feather="tool" class="h-8 w-8 text-primary-600"></i>
134
+ </div>
135
+ <h3 class="text-xl font-bold text-gray-900 mb-4">Nieuwe Aanleg</h3>
136
+ <p class="text-gray-600">Professionele plaatsing van hoogwaardige rubberdaken voor nieuwbouw en renovatieprojecten.</p>
137
+ </div>
138
+ <div class="feature-card bg-gray-50 p-8 rounded-xl shadow-lg hover:shadow-xl">
139
+ <div class="w-16 h-16 bg-primary-100 rounded-full flex items-center justify-center mb-6">
140
+ <i data-feather="shield" class="h-8 w-8 text-primary-600"></i>
141
+ </div>
142
+ <h3 class="text-xl font-bold text-gray-900 mb-4">Onderhoud & Reparatie</h3>
143
+ <p class="text-gray-600">Regelmatig onderhoud en snelle reparaties om de levensduur van uw dak te garanderen.</p>
144
+ </div>
145
+ <div class="feature-card bg-gray-50 p-8 rounded-xl shadow-lg hover:shadow-xl">
146
+ <div class="w-16 h-16 bg-primary-100 rounded-full flex items-center justify-center mb-6">
147
+ <i data-feather="check-circle" class="h-8 w-8 text-primary-600"></i>
148
+ </div>
149
+ <h3 class="text-xl font-bold text-gray-900 mb-4">Inspectie & Advies</h3>
150
+ <p class="text-gray-600">Gratis dak inspecties en persoonlijk advies voor de beste oplossing.</p>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </section>
155
+
156
+ <!-- Voordelen Section -->
157
+ <section id="voordelen" class="py-20 bg-primary-50">
158
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
159
+ <div class="grid md:grid-cols-2 gap-12 items-center">
160
+ <div>
161
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">Waarom Kiezen voor Rubberdaken?</h2>
162
+ <div class="space-y-6">
163
+ <div class="flex items-start">
164
+ <div class="flex-shrink-0">
165
+ <div class="w-8 h-8 bg-primary-600 rounded-full flex items-center justify-center">
166
+ <i data-feather="check" class="h-4 w-4 text-white"></i>
167
+ </div>
168
+ </div>
169
+ <div class="ml-4">
170
+ <h3 class="text-lg font-semibold text-gray-900">25+ Jaar Garantie</h3>
171
+ <p class="text-gray-600 mt-1">Lange levensduur met uitgebreide garantie</p>
172
+ </div>
173
+ </div>
174
+ <div class="flex items-start">
175
+ <div class="flex-shrink-0">
176
+ <div class="w-8 h-8 bg-primary-600 rounded-full flex items-center justify-center">
177
+ <i data-feather="check" class="h-4 w-4 text-white"></i>
178
+ </div>
179
+ </div>
180
+ <div class="ml-4">
181
+ <h3 class="text-lg font-semibold text-gray-900">Energiezuinig</h3>
182
+ <p class="text-gray-600 mt-1">Beter isolatie voor lagere energiekosten</p>
183
+ </div>
184
+ </div>
185
+ <div class="flex items-start">
186
+ <div class="flex-shrink-0">
187
+ <div class="w-8 h-8 bg-primary-600 rounded-full flex items-center justify-center">
188
+ <i data-feather="check" class="h-4 w-4 text-white"></i>
189
+ </div>
190
+ </div>
191
+ <div class="ml-4">
192
+ <h3 class="text-lg font-semibold text-gray-900">Mildebelasting</h3>
193
+ <p class="text-gray-600 mt-1">Lichtgewicht en geschikt voor alle daken</p>
194
+ </div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+ <div class="relative">
199
+ <img src="http://static.photos/construction/640x360/1" alt="Rubberdak installatie" class="rounded-lg shadow-2xl">
200
+ <div class="absolute -bottom-6 -left-6 bg-white p-6 rounded-lg shadow-lg">
201
+ <div class="text-3xl font-bold text-primary-600">98%</div>
202
+ <div class="text-gray-600">Tevreden Klanten</div>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </section>
208
+
209
+ <!-- CTA Section -->
210
+ <section id="contact" class="py-20 bg-primary-600 text-white">
211
+ <div class="max-w-4xl mx-auto text-center px-4 sm:px-6 lg:px-8">
212
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Klaar voor een Waterdicht Dak?</h2>
213
+ <p class="text-xl mb-8 opacity-90">Neem vandaag nog contact op voor een vrijblijvende offerte</p>
214
+ <div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
215
+ <button class="bg-secondary-500 hover:bg-secondary-600 text-white px-8 py-3 rounded-lg font-semibold text-lg transition duration-300 transform hover:scale-105">
216
+ <i data-feather="phone" class="inline w-5 h-5 mr-2"></i>
217
+ 085 - 130 45 67
218
+ </button>
219
+ <button class="bg-white text-primary-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-semibold text-lg transition duration-300">
220
+ <i data-feather="mail" class="inline w-5 h-5 mr-2"></i>
221
+ info@rubberroofrevolution.nl
222
+ </button>
223
+ </div>
224
+ </div>
225
+ </section>
226
+
227
+ <!-- Footer -->
228
+ <footer class="bg-gray-900 text-white py-12">
229
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
230
+ <div class="grid md:grid-cols-4 gap-8">
231
+ <div>
232
+ <div class="flex items-center mb-4">
233
+ <i data-feather="home" class="h-8 w-8 text-primary-400"></i>
234
+ <span class="ml-2 text-xl font-bold">RubberRoofRevolution</span>
235
+ </div>
236
+ <p class="text-gray-400">Uw betrouwbare partner voor rubberdaken sinds 2010.</p>
237
+ </div>
238
+ <div>
239
+ <h3 class="text-lg font-semibold mb-4">Diensten</h3>
240
+ <ul class="space-y-2 text-gray-400">
241
+ <li><a href="#" class="hover:text-white">Dakaanleg</a></li>
242
+ <li><a href="#" class="hover:text-white">Onderhoud</a></li>
243
+ <li><a href="#" class="hover:text-white">Reparatie</a></li>
244
+ <li><a href="#" class="hover:text-white">Inspectie</a></li>
245
+ </ul>
246
+ </div>
247
+ <div>
248
+ <h3 class="text-lg font-semibold mb-4">Contact</h3>
249
+ <ul class="space-y-2 text-gray-400">
250
+ <li>Dakstraat 123</li>
251
+ <li>1234 AB Rotterdam</li>
252
+ <li>085 - 130 45 67</li>
253
+ <li>info@rubberroofrevolution.nl</li>
254
+ </ul>
255
+ </div>
256
+ <div>
257
+ <h3 class="text-lg font-semibold mb-4">Volg Ons</h3>
258
+ <div class="flex space-x-4">
259
+ <a href="#" class="text-gray-400 hover:text-white">
260
+ <i data-feather="facebook" class="h-6 w-6"></i>
261
+ </a>
262
+ <a href="#" class="text-gray-400 hover:text-white">
263
+ <i data-feather="instagram" class="h-6 w-6"></i>
264
+ </a>
265
+ <a href="#" class="text-gray-400 hover:text-white">
266
+ <i data-feather="linkedin" class="h-6 w-6"></i>
267
+ </a>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
272
+ <p>&copy; 2024 RubberRoofRevolution. Alle rechten voorbehouden.</p>
273
+ </div>
274
+ </div>
275
+ </footer>
276
+
277
+ <script>
278
+ // Mobile menu toggle
279
+ document.querySelector('.mobile-menu-button').addEventListener('click', function() {
280
+ document.querySelector('.mobile-menu').classList.toggle('hidden');
281
+ });
282
+
283
+ // Vanta.js background
284
+ VANTA.NET({
285
+ el: "#vanta-bg",
286
+ mouseControls: true,
287
+ touchControls: true,
288
+ gyroControls: false,
289
+ minHeight: 200.00,
290
+ minWidth: 200.00,
291
+ scale: 1.00,
292
+ scaleMobile: 1.00,
293
+ color: 0x0ea5e9,
294
+ backgroundColor: 0x0ea5e9,
295
+ points: 12.00,
296
+ maxDistance: 25.00,
297
+ spacing: 18.00
298
+ });
299
+
300
+ // Smooth scrolling
301
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
302
+ anchor.addEventListener('click', function (e) {
303
+ e.preventDefault();
304
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
305
+ behavior: 'smooth'
306
+ });
307
+ });
308
+ });
309
+
310
+ // Initialize feather icons
311
+ feather.replace();
312
+ </script>
313
+ </body>
314
  </html>