Doobdeedoo commited on
Commit
be01ab7
·
verified ·
1 Parent(s): f18b62a

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +429 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Leseco
3
- emoji: 💻
4
- colorFrom: gray
5
- colorTo: yellow
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: leseco
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,429 @@
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="de">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>LeSeCo - Psychologische Beratung & Coaching</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
+ <style>
10
+ .hero-gradient {
11
+ background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
12
+ }
13
+ .nav-link:hover {
14
+ color: #7c3aed;
15
+ transition: all 0.3s ease;
16
+ }
17
+ .service-card:hover {
18
+ transform: translateY(-5px);
19
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
20
+ }
21
+ .service-card {
22
+ transition: all 0.3s ease;
23
+ }
24
+ </style>
25
+ </head>
26
+ <body class="font-sans bg-gray-50">
27
+ <!-- Header/Navigation -->
28
+ <header class="bg-white shadow-sm sticky top-0 z-50">
29
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
30
+ <div class="flex items-center">
31
+ <a href="index.html" class="text-2xl font-bold text-indigo-600 flex items-center">
32
+ <i class="fas fa-brain mr-2"></i> LeSeCo
33
+ </a>
34
+ </div>
35
+
36
+ <!-- Mobile menu button -->
37
+ <button id="mobile-menu-button" class="md:hidden text-gray-600 focus:outline-none">
38
+ <i class="fas fa-bars text-2xl"></i>
39
+ </button>
40
+
41
+ <!-- Desktop Navigation -->
42
+ <nav class="hidden md:flex space-x-8">
43
+ <a href="index.html" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Home</a>
44
+ <a href="psychologische_beratung/index.html" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Beratung</a>
45
+ <a href="coaching/index.html" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Coaching</a>
46
+ <a href="neurofeedback/index.html" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Neurofeedback</a>
47
+ <a href="meine_person/index.html" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Über mich</a>
48
+ <a href="kontakt/index.php" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Kontakt</a>
49
+ </nav>
50
+ </div>
51
+
52
+ <!-- Mobile Navigation -->
53
+ <div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
54
+ <a href="index.html" class="block py-2 text-gray-700 hover:text-indigo-600">Home</a>
55
+ <a href="psychologische_beratung/index.html" class="block py-2 text-gray-700 hover:text-indigo-600">Beratung</a>
56
+ <a href="coaching/index.html" class="block py-2 text-gray-700 hover:text-indigo-600">Coaching</a>
57
+ <a href="neurofeedback/index.html" class="block py-2 text-gray-700 hover:text-indigo-600">Neurofeedback</a>
58
+ <a href="meine_person/index.html" class="block py-2 text-gray-700 hover:text-indigo-600">Über mich</a>
59
+ <a href="kontakt/index.php" class="block py-2 text-gray-700 hover:text-indigo-600">Kontakt</a>
60
+ </div>
61
+ </header>
62
+
63
+ <!-- Hero Section -->
64
+ <section class="hero-gradient text-white py-16 md:py-24">
65
+ <div class="container mx-auto px-4">
66
+ <div class="max-w-3xl mx-auto text-center">
67
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Psychologische Beratung & Coaching</h1>
68
+ <p class="text-xl md:text-2xl mb-8">Herzlich willkommen bei LeSeCo - Ihrem Partner für persönliche Entwicklung und mentale Gesundheit</p>
69
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
70
+ <a href="kontakt/index.php" class="bg-white text-indigo-600 hover:bg-gray-100 font-bold py-3 px-6 rounded-full transition duration-300">
71
+ Termin vereinbaren
72
+ </a>
73
+ <a href="leistungen/index.html" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-600 font-bold py-3 px-6 rounded-full transition duration-300">
74
+ Unsere Leistungen
75
+ </a>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </section>
80
+
81
+ <!-- Services Section -->
82
+ <section class="py-16 bg-white">
83
+ <div class="container mx-auto px-4">
84
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Unsere Angebote</h2>
85
+
86
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
87
+ <!-- Service 1 -->
88
+ <a href="skype_-_zoom/index.html" class="service-card bg-gray-50 rounded-lg overflow-hidden shadow-md">
89
+ <div class="p-6">
90
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
91
+ <i class="fas fa-video text-indigo-600 text-2xl"></i>
92
+ </div>
93
+ <h3 class="text-xl font-bold mb-3 text-gray-800">Online-Beratung</h3>
94
+ <p class="text-gray-600 mb-4">Professionelle Beratung bequem von zu Hause aus via Skype oder Zoom. Ortsunabhängig und flexibel.</p>
95
+ <div class="text-indigo-600 font-medium flex items-center">
96
+ Mehr erfahren
97
+ <i class="fas fa-arrow-right ml-2"></i>
98
+ </div>
99
+ </div>
100
+ </a>
101
+
102
+ <!-- Service 2 -->
103
+ <a href="psychologische_beratung/index.html" class="service-card bg-gray-50 rounded-lg overflow-hidden shadow-md">
104
+ <div class="p-6">
105
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
106
+ <i class="fas fa-hands-helping text-indigo-600 text-2xl"></i>
107
+ </div>
108
+ <h3 class="text-xl font-bold mb-3 text-gray-800">Psychologische Beratung</h3>
109
+ <p class="text-gray-600 mb-4">Professionelle Unterstützung bei Lebenskrisen, Beziehungsproblemen und persönlichen Herausforderungen.</p>
110
+ <div class="text-indigo-600 font-medium flex items-center">
111
+ Mehr erfahren
112
+ <i class="fas fa-arrow-right ml-2"></i>
113
+ </div>
114
+ </div>
115
+ </a>
116
+
117
+ <!-- Service 3 -->
118
+ <a href="coaching/index.html" class="service-card bg-gray-50 rounded-lg overflow-hidden shadow-md">
119
+ <div class="p-6">
120
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
121
+ <i class="fas fa-chart-line text-indigo-600 text-2xl"></i>
122
+ </div>
123
+ <h3 class="text-xl font-bold mb-3 text-gray-800">Coaching</h3>
124
+ <p class="text-gray-600 mb-4">Ressourcenorientierte Begleitung für berufliche und persönliche Entwicklung. Lösungsfokussiert und zielgerichtet.</p>
125
+ <div class="text-indigo-600 font-medium flex items-center">
126
+ Mehr erfahren
127
+ <i class="fas fa-arrow-right ml-2"></i>
128
+ </div>
129
+ </div>
130
+ </a>
131
+
132
+ <!-- Service 4 -->
133
+ <a href="neurofeedback/index.html" class="service-card bg-gray-50 rounded-lg overflow-hidden shadow-md">
134
+ <div class="p-6">
135
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
136
+ <i class="fas fa-brain text-indigo-600 text-2xl"></i>
137
+ </div>
138
+ <h3 class="text-xl font-bold mb-3 text-gray-800">Neurofeedback</h3>
139
+ <p class="text-gray-600 mb-4">Modernes Gehirntraining zur Verbesserung von Konzentration, Schlaf und Stressbewältigung.</p>
140
+ <div class="text-indigo-600 font-medium flex items-center">
141
+ Mehr erfahren
142
+ <i class="fas fa-arrow-right ml-2"></i>
143
+ </div>
144
+ </div>
145
+ </a>
146
+
147
+ <!-- Service 5 -->
148
+ <a href="praeventivia_net/index.html" class="service-card bg-gray-50 rounded-lg overflow-hidden shadow-md">
149
+ <div class="p-6">
150
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
151
+ <i class="fas fa-shield-alt text-indigo-600 text-2xl"></i>
152
+ </div>
153
+ <h3 class="text-xl font-bold mb-3 text-gray-800">Prävention</h3>
154
+ <p class="text-gray-600 mb-4">Maßnahmen zur Vorbeugung und Stärkung der psychischen Gesundheit in verschiedenen Lebensbereichen.</p>
155
+ <div class="text-indigo-600 font-medium flex items-center">
156
+ Mehr erfahren
157
+ <i class="fas fa-arrow-right ml-2"></i>
158
+ </div>
159
+ </div>
160
+ </a>
161
+
162
+ <!-- Service 6 -->
163
+ <a href="leistungen/index.html" class="service-card bg-gray-50 rounded-lg overflow-hidden shadow-md">
164
+ <div class="p-6">
165
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
166
+ <i class="fas fa-list-alt text-indigo-600 text-2xl"></i>
167
+ </div>
168
+ <h3 class="text-xl font-bold mb-3 text-gray-800">Alle Leistungen</h3>
169
+ <p class="text-gray-600 mb-4">Eine Übersicht aller unserer Angebote und Dienstleistungen im Bereich psychologische Beratung.</p>
170
+ <div class="text-indigo-600 font-medium flex items-center">
171
+ Mehr erfahren
172
+ <i class="fas fa-arrow-right ml-2"></i>
173
+ </div>
174
+ </div>
175
+ </a>
176
+ </div>
177
+ </div>
178
+ </section>
179
+
180
+ <!-- About Section -->
181
+ <section class="py-16 bg-gray-50">
182
+ <div class="container mx-auto px-4">
183
+ <div class="flex flex-col lg:flex-row items-center">
184
+ <div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12">
185
+ <img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80"
186
+ alt="Psychologische Beratung"
187
+ class="rounded-lg shadow-lg w-full h-auto">
188
+ </div>
189
+ <div class="lg:w-1/2">
190
+ <h2 class="text-3xl font-bold mb-6 text-gray-800">Über LeSeCo</h2>
191
+ <p class="text-gray-600 mb-4">
192
+ Auf diesen Seiten möchte ich Ihnen meine Ziele und Ideen näher bringen und Sie über meine Arbeit informieren.
193
+ Mein Name ist [Name] und ich bin psychologische Beraterin mit langjähriger Erfahrung in verschiedenen Bereichen
194
+ der mentalen Gesundheit und persönlichen Entwicklung.
195
+ </p>
196
+ <p class="text-gray-600 mb-6">
197
+ Mein Ansatz ist ganzheitlich, respektvoll und individuell auf Ihre Bedürfnisse zugeschnitten.
198
+ Ich arbeite mit bewährten Methoden und modernen Techniken wie Neurofeedback, um Ihnen die bestmögliche
199
+ Unterstützung bieten zu können.
200
+ </p>
201
+ <a href="meine_person/index.html" class="inline-flex items-center text-indigo-600 font-medium">
202
+ Mehr über mich erfahren
203
+ <i class="fas fa-arrow-right ml-2"></i>
204
+ </a>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ </section>
209
+
210
+ <!-- Testimonials Section -->
211
+ <section class="py-16 bg-indigo-50">
212
+ <div class="container mx-auto px-4">
213
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Das sagen unsere Klienten</h2>
214
+
215
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
216
+ <!-- Testimonial 1 -->
217
+ <div class="bg-white p-6 rounded-lg shadow-md">
218
+ <div class="flex items-center mb-4">
219
+ <div class="text-yellow-400 mr-2">
220
+ <i class="fas fa-star"></i>
221
+ <i class="fas fa-star"></i>
222
+ <i class="fas fa-star"></i>
223
+ <i class="fas fa-star"></i>
224
+ <i class="fas fa-star"></i>
225
+ </div>
226
+ </div>
227
+ <p class="text-gray-600 mb-4 italic">
228
+ "Die Beratung bei LeSeCo hat mir geholfen, meine Ängste zu überwinden und neue Perspektiven zu entwickeln.
229
+ Die Online-Sitzungen waren sehr praktisch und effektiv."
230
+ </p>
231
+ <div class="flex items-center">
232
+ <div class="bg-indigo-100 w-10 h-10 rounded-full flex items-center justify-center mr-3">
233
+ <i class="fas fa-user text-indigo-600"></i>
234
+ </div>
235
+ <div>
236
+ <h4 class="font-medium text-gray-800">Sarah M.</h4>
237
+ <p class="text-sm text-gray-500">Online-Beratung</p>
238
+ </div>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Testimonial 2 -->
243
+ <div class="bg-white p-6 rounded-lg shadow-md">
244
+ <div class="flex items-center mb-4">
245
+ <div class="text-yellow-400 mr-2">
246
+ <i class="fas fa-star"></i>
247
+ <i class="fas fa-star"></i>
248
+ <i class="fas fa-star"></i>
249
+ <i class="fas fa-star"></i>
250
+ <i class="fas fa-star"></i>
251
+ </div>
252
+ </div>
253
+ <p class="text-gray-600 mb-4 italic">
254
+ "Das Neurofeedback-Training hat meine Konzentrationsfähigkeit deutlich verbessert.
255
+ Ich kann jetzt länger und fokussierter arbeiten, ohne mich gestresst zu fühlen."
256
+ </p>
257
+ <div class="flex items-center">
258
+ <div class="bg-indigo-100 w-10 h-10 rounded-full flex items-center justify-center mr-3">
259
+ <i class="fas fa-user text-indigo-600"></i>
260
+ </div>
261
+ <div>
262
+ <h4 class="font-medium text-gray-800">Thomas K.</h4>
263
+ <p class="text-sm text-gray-500">Neurofeedback</p>
264
+ </div>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Testimonial 3 -->
269
+ <div class="bg-white p-6 rounded-lg shadow-md">
270
+ <div class="flex items-center mb-4">
271
+ <div class="text-yellow-400 mr-2">
272
+ <i class="fas fa-star"></i>
273
+ <i class="fas fa-star"></i>
274
+ <i class="fas fa-star"></i>
275
+ <i class="fas fa-star"></i>
276
+ <i class="fas fa-star-half-alt"></i>
277
+ </div>
278
+ </div>
279
+ <p class="text-gray-600 mb-4 italic">
280
+ "Durch das Coaching habe ich Klarheit über meine berufliche Zukunft gewonnen.
281
+ Die Gespräche waren stets wertschätzend und gleichzeitig herausfordernd im positiven Sinne."
282
+ </p>
283
+ <div class="flex items-center">
284
+ <div class="bg-indigo-100 w-10 h-10 rounded-full flex items-center justify-center mr-3">
285
+ <i class="fas fa-user text-indigo-600"></i>
286
+ </div>
287
+ <div>
288
+ <h4 class="font-medium text-gray-800">Julia R.</h4>
289
+ <p class="text-sm text-gray-500">Coaching</p>
290
+ </div>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ </div>
295
+ </section>
296
+
297
+ <!-- CTA Section -->
298
+ <section class="py-16 bg-indigo-600 text-white">
299
+ <div class="container mx-auto px-4 text-center">
300
+ <h2 class="text-3xl font-bold mb-6">Bereit für den ersten Schritt?</h2>
301
+ <p class="text-xl mb-8 max-w-2xl mx-auto">
302
+ Vereinbaren Sie noch heute einen Termin für ein kostenloses Erstgespräch und erfahren Sie,
303
+ wie wir Ihnen helfen können.
304
+ </p>
305
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
306
+ <a href="kontakt/index.php" class="bg-white text-indigo-600 hover:bg-gray-100 font-bold py-3 px-8 rounded-full transition duration-300 inline-flex items-center justify-center">
307
+ <i class="fas fa-calendar-alt mr-2"></i> Termin vereinbaren
308
+ </a>
309
+ <a href="tel:+49123456789" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-600 font-bold py-3 px-8 rounded-full transition duration-300 inline-flex items-center justify-center">
310
+ <i class="fas fa-phone mr-2"></i> +49 123 456 789
311
+ </a>
312
+ </div>
313
+ </div>
314
+ </section>
315
+
316
+ <!-- Footer -->
317
+ <footer class="bg-gray-800 text-white pt-12 pb-6">
318
+ <div class="container mx-auto px-4">
319
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-8">
320
+ <!-- Column 1 -->
321
+ <div>
322
+ <h3 class="text-xl font-bold mb-4">LeSeCo</h3>
323
+ <p class="text-gray-400 mb-4">
324
+ Professionelle psychologische Beratung, Coaching und Neurofeedback für persönliche Entwicklung und mentale Gesundheit.
325
+ </p>
326
+ <div class="flex space-x-4">
327
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
328
+ <i class="fab fa-facebook-f"></i>
329
+ </a>
330
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
331
+ <i class="fab fa-linkedin-in"></i>
332
+ </a>
333
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
334
+ <i class="fab fa-instagram"></i>
335
+ </a>
336
+ </div>
337
+ </div>
338
+
339
+ <!-- Column 2 -->
340
+ <div>
341
+ <h3 class="text-xl font-bold mb-4">Kontakt</h3>
342
+ <ul class="space-y-2">
343
+ <li class="flex items-center">
344
+ <i class="fas fa-map-marker-alt mr-3 text-gray-400"></i>
345
+ <span class="text-gray-400">Musterstraße 123, 12345 Berlin</span>
346
+ </li>
347
+ <li class="flex items-center">
348
+ <i class="fas fa-phone mr-3 text-gray-400"></i>
349
+ <a href="tel:+49123456789" class="text-gray-400 hover:text-white">+49 123 456 789</a>
350
+ </li>
351
+ <li class="flex items-center">
352
+ <i class="fas fa-envelope mr-3 text-gray-400"></i>
353
+ <a href="mailto:info@leseco.net" class="text-gray-400 hover:text-white">info@leseco.net</a>
354
+ </li>
355
+ </ul>
356
+ </div>
357
+
358
+ <!-- Column 3 -->
359
+ <div>
360
+ <h3 class="text-xl font-bold mb-4">Schnelllinks</h3>
361
+ <ul class="space-y-2">
362
+ <li><a href="index.html" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
363
+ <li><a href="psychologische_beratung/index.html" class="text-gray-400 hover:text-white transition duration-300">Beratung</a></li>
364
+ <li><a href="coaching/index.html" class="text-gray-400 hover:text-white transition duration-300">Coaching</a></li>
365
+ <li><a href="neurofeedback/index.html" class="text-gray-400 hover:text-white transition duration-300">Neurofeedback</a></li>
366
+ <li><a href="meine_person/index.html" class="text-gray-400 hover:text-white transition duration-300">Über mich</a></li>
367
+ </ul>
368
+ </div>
369
+
370
+ <!-- Column 4 -->
371
+ <div>
372
+ <h3 class="text-xl font-bold mb-4">Rechtliches</h3>
373
+ <ul class="space-y-2">
374
+ <li><a href="dsgvo/index.html" class="text-gray-400 hover:text-white transition duration-300">Datenschutz</a></li>
375
+ <li><a href="impressum.html" class="text-gray-400 hover:text-white transition duration-300">Impressum</a></li>
376
+ <li><a href="agb.html" class="text-gray-400 hover:text-white transition duration-300">AGB</a></li>
377
+ <li><a href="gebuehren/index.html" class="text-gray-400 hover:text-white transition duration-300">Gebühren</a></li>
378
+ </ul>
379
+ </div>
380
+ </div>
381
+
382
+ <div class="border-t border-gray-700 pt-6 flex flex-col md:flex-row justify-between items-center">
383
+ <p class="text-gray-400 text-sm mb-4 md:mb-0">
384
+ &copy; 2023 LeSeCo. Alle Rechte vorbehalten.
385
+ </p>
386
+ <div class="flex space-x-6">
387
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Cookie-Einstellungen</a>
388
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Nutzungsbedingungen</a>
389
+ </div>
390
+ </div>
391
+ </div>
392
+ </footer>
393
+
394
+ <!-- Back to Top Button -->
395
+ <button id="back-to-top" class="fixed bottom-6 right-6 bg-indigo-600 text-white w-12 h-12 rounded-full shadow-lg hidden items-center justify-center">
396
+ <i class="fas fa-arrow-up"></i>
397
+ </button>
398
+
399
+ <script>
400
+ // Mobile menu toggle
401
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
402
+ const mobileMenu = document.getElementById('mobile-menu');
403
+
404
+ mobileMenuButton.addEventListener('click', () => {
405
+ mobileMenu.classList.toggle('hidden');
406
+ });
407
+
408
+ // Back to top button
409
+ const backToTopButton = document.getElementById('back-to-top');
410
+
411
+ window.addEventListener('scroll', () => {
412
+ if (window.pageYOffset > 300) {
413
+ backToTopButton.classList.remove('hidden');
414
+ backToTopButton.classList.add('flex');
415
+ } else {
416
+ backToTopButton.classList.add('hidden');
417
+ backToTopButton.classList.remove('flex');
418
+ }
419
+ });
420
+
421
+ backToTopButton.addEventListener('click', () => {
422
+ window.scrollTo({
423
+ top: 0,
424
+ behavior: 'smooth'
425
+ });
426
+ });
427
+ </script>
428
+ <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=Doobdeedoo/leseco" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
429
+ </html>
prompts.txt ADDED
File without changes