keithson777 commited on
Commit
1334962
·
verified ·
1 Parent(s): 449cee4

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +363 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Warringtons Web
3
- emoji: 📊
4
- colorFrom: gray
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: warringtons-web
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: pink
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,363 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Innovation Germany | Tech & Startup Landscape</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
12
+ }
13
+ .article-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .innovation-pulse {
18
+ position: relative;
19
+ overflow: hidden;
20
+ }
21
+ .innovation-pulse::after {
22
+ content: '';
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ right: 0;
27
+ bottom: 0;
28
+ background: radial-gradient(circle at center, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
29
+ animation: pulse 4s infinite;
30
+ z-index: 0;
31
+ }
32
+ @keyframes pulse {
33
+ 0% { transform: scale(0.8); opacity: 0.7; }
34
+ 50% { transform: scale(1.1); opacity: 0.3; }
35
+ 100% { transform: scale(0.8); opacity: 0.7; }
36
+ }
37
+ .typewriter {
38
+ overflow: hidden;
39
+ border-right: .15em solid #3b82f6;
40
+ white-space: nowrap;
41
+ animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
42
+ }
43
+ @keyframes typing {
44
+ from { width: 0 }
45
+ to { width: 100% }
46
+ }
47
+ @keyframes blink-caret {
48
+ from, to { border-color: transparent }
49
+ 50% { border-color: #3b82f6; }
50
+ }
51
+ </style>
52
+ </head>
53
+ <body class="bg-gray-50 font-sans">
54
+ <!-- Header -->
55
+ <header class="gradient-bg text-white">
56
+ <div class="container mx-auto px-4 py-6">
57
+ <div class="flex justify-between items-center">
58
+ <div class="flex items-center space-x-2">
59
+ <i class="fas fa-rocket text-2xl"></i>
60
+ <h1 class="text-2xl font-bold">InnovationGermany</h1>
61
+ </div>
62
+ <nav class="hidden md:block">
63
+ <ul class="flex space-x-8">
64
+ <li><a href="#" class="hover:text-blue-200 transition">Home</a></li>
65
+ <li><a href="#" class="hover:text-blue-200 transition">Startups</a></li>
66
+ <li><a href="#" class="hover:text-blue-200 transition">Tech</a></li>
67
+ <li><a href="#" class="hover:text-blue-200 transition">Research</a></li>
68
+ <li><a href="#" class="hover:text-blue-200 transition">About</a></li>
69
+ </ul>
70
+ </nav>
71
+ <button class="md:hidden text-xl">
72
+ <i class="fas fa-bars"></i>
73
+ </button>
74
+ </div>
75
+ </div>
76
+ </header>
77
+
78
+ <!-- Hero Section -->
79
+ <section class="innovation-pulse gradient-bg text-white py-20">
80
+ <div class="container mx-auto px-4 relative z-10">
81
+ <div class="max-w-3xl mx-auto text-center">
82
+ <h1 class="text-4xl md:text-5xl font-bold mb-6 typewriter">Germany's Innovation Landscape</h1>
83
+ <p class="text-xl mb-8">Exploring the cutting-edge technologies, startups, and research shaping Europe's largest economy</p>
84
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
85
+ <button class="bg-white text-blue-800 px-6 py-3 rounded-lg font-semibold hover:bg-blue-100 transition">Latest Articles</button>
86
+ <button class="border-2 border-white text-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-800 transition">Subscribe</button>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </section>
91
+
92
+ <!-- Stats Section -->
93
+ <section class="py-12 bg-white">
94
+ <div class="container mx-auto px-4">
95
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
96
+ <div class="p-6 border border-gray-200 rounded-lg">
97
+ <div class="text-3xl font-bold text-blue-600 mb-2">2,500+</div>
98
+ <div class="text-gray-600">Tech Startups</div>
99
+ </div>
100
+ <div class="p-6 border border-gray-200 rounded-lg">
101
+ <div class="text-3xl font-bold text-blue-600 mb-2">€7.4B</div>
102
+ <div class="text-gray-600">VC Investment (2022)</div>
103
+ </div>
104
+ <div class="p-6 border border-gray-200 rounded-lg">
105
+ <div class="text-3xl font-bold text-blue-600 mb-2">#4</div>
106
+ <div class="text-gray-600">Global Innovation Index</div>
107
+ </div>
108
+ <div class="p-6 border border-gray-200 rounded-lg">
109
+ <div class="text-3xl font-bold text-blue-600 mb-2">100+</div>
110
+ <div class="text-gray-600">Unicorns & Exits</div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </section>
115
+
116
+ <!-- Featured Articles -->
117
+ <section class="py-16 bg-gray-50">
118
+ <div class="container mx-auto px-4">
119
+ <h2 class="text-3xl font-bold mb-12 text-center">Featured Articles</h2>
120
+
121
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
122
+ <!-- Article 1 -->
123
+ <article class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
124
+ <div class="h-48 bg-blue-100 flex items-center justify-center">
125
+ <i class="fas fa-car text-6xl text-blue-600"></i>
126
+ </div>
127
+ <div class="p-6">
128
+ <span class="text-sm text-blue-600 font-semibold">AUTOMOTIVE TECH</span>
129
+ <h3 class="text-xl font-bold my-3">Germany's Electric Vehicle Revolution</h3>
130
+ <p class="text-gray-600 mb-4">How traditional automakers are transforming to lead in the EV market with innovative battery technologies and charging infrastructure.</p>
131
+ <div class="flex justify-between items-center">
132
+ <span class="text-sm text-gray-500">June 15, 2023</span>
133
+ <button class="text-blue-600 hover:text-blue-800 font-medium">Read More →</button>
134
+ </div>
135
+ </div>
136
+ </article>
137
+
138
+ <!-- Article 2 -->
139
+ <article class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
140
+ <div class="h-48 bg-green-100 flex items-center justify-center">
141
+ <i class="fas fa-leaf text-6xl text-green-600"></i>
142
+ </div>
143
+ <div class="p-6">
144
+ <span class="text-sm text-green-600 font-semibold">CLEAN ENERGY</span>
145
+ <h3 class="text-xl font-bold my-3">The Rise of Green Hydrogen</h3>
146
+ <p class="text-gray-600 mb-4">Germany's €9 billion investment in hydrogen technology positions it as a global leader in renewable energy storage and industrial applications.</p>
147
+ <div class="flex justify-between items-center">
148
+ <span class="text-sm text-gray-500">May 28, 2023</span>
149
+ <button class="text-blue-600 hover:text-blue-800 font-medium">Read More →</button>
150
+ </div>
151
+ </div>
152
+ </article>
153
+
154
+ <!-- Article 3 -->
155
+ <article class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
156
+ <div class="h-48 bg-purple-100 flex items-center justify-center">
157
+ <i class="fas fa-robot text-6xl text-purple-600"></i>
158
+ </div>
159
+ <div class="p-6">
160
+ <span class="text-sm text-purple-600 font-semibold">ARTIFICIAL INTELLIGENCE</span>
161
+ <h3 class="text-xl font-bold my-3">AI Research Hubs in Germany</h3>
162
+ <p class="text-gray-600 mb-4">Exploring the leading AI research institutions and how they're collaborating with industry to drive practical applications in healthcare and manufacturing.</p>
163
+ <div class="flex justify-between items-center">
164
+ <span class="text-sm text-gray-500">April 12, 2023</span>
165
+ <button class="text-blue-600 hover:text-blue-800 font-medium">Read More →</button>
166
+ </div>
167
+ </div>
168
+ </article>
169
+ </div>
170
+
171
+ <div class="text-center mt-12">
172
+ <button class="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition font-medium">
173
+ View All Articles
174
+ </button>
175
+ </div>
176
+ </div>
177
+ </section>
178
+
179
+ <!-- Innovation Hubs -->
180
+ <section class="py-16 bg-white">
181
+ <div class="container mx-auto px-4">
182
+ <h2 class="text-3xl font-bold mb-12 text-center">Germany's Innovation Hubs</h2>
183
+
184
+ <div class="grid md:grid-cols-3 gap-8">
185
+ <div class="border border-gray-200 rounded-lg p-6 hover:border-blue-300 transition">
186
+ <div class="flex items-center mb-4">
187
+ <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-4">
188
+ <i class="fas fa-building text-blue-600"></i>
189
+ </div>
190
+ <h3 class="text-xl font-bold">Berlin</h3>
191
+ </div>
192
+ <p class="text-gray-600">Europe's fastest-growing startup ecosystem with strengths in fintech, mobility, and SaaS. Home to unicorns like N26, Delivery Hero, and Auto1.</p>
193
+ <div class="mt-4 flex flex-wrap gap-2">
194
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 text-sm rounded-full">Fintech</span>
195
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 text-sm rounded-full">E-commerce</span>
196
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 text-sm rounded-full">Mobility</span>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="border border-gray-200 rounded-lg p-6 hover:border-blue-300 transition">
201
+ <div class="flex items-center mb-4">
202
+ <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mr-4">
203
+ <i class="fas fa-industry text-green-600"></i>
204
+ </div>
205
+ <h3 class="text-xl font-bold">Munich</h3>
206
+ </div>
207
+ <p class="text-gray-600">Strong in industrial tech, automotive, and deep tech with close ties to technical universities and corporate R&D centers like BMW and Siemens.</p>
208
+ <div class="mt-4 flex flex-wrap gap-2">
209
+ <span class="px-3 py-1 bg-green-100 text-green-800 text-sm rounded-full">Automotive</span>
210
+ <span class="px-3 py-1 bg-green-100 text-green-800 text-sm rounded-full">Industry 4.0</span>
211
+ <span class="px-3 py-1 bg-green-100 text-green-800 text-sm rounded-full">Robotics</span>
212
+ </div>
213
+ </div>
214
+
215
+ <div class="border border-gray-200 rounded-lg p-6 hover:border-blue-300 transition">
216
+ <div class="flex items-center mb-4">
217
+ <div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mr-4">
218
+ <i class="fas fa-flask text-purple-600"></i>
219
+ </div>
220
+ <h3 class="text-xl font-bold">Rhineland</h3>
221
+ </div>
222
+ <p class="text-gray-600">Chemical and pharmaceutical innovation cluster with BASF, Bayer, and BioNTech leading in life sciences and sustainable materials.</p>
223
+ <div class="mt-4 flex flex-wrap gap-2">
224
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 text-sm rounded-full">Biotech</span>
225
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 text-sm rounded-full">Chemicals</span>
226
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 text-sm rounded-full">Pharma</span>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </section>
232
+
233
+ <!-- Newsletter -->
234
+ <section class="py-16 bg-gray-100">
235
+ <div class="container mx-auto px-4 max-w-4xl">
236
+ <div class="bg-white rounded-xl shadow-md p-8 md:p-12">
237
+ <div class="text-center mb-8">
238
+ <h2 class="text-3xl font-bold mb-2">Stay Updated on German Innovation</h2>
239
+ <p class="text-gray-600">Weekly insights on startups, research breakthroughs, and tech policy in Germany</p>
240
+ </div>
241
+ <form class="space-y-4">
242
+ <div class="grid md:grid-cols-2 gap-4">
243
+ <div>
244
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
245
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
246
+ </div>
247
+ <div>
248
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
249
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
250
+ </div>
251
+ </div>
252
+ <div>
253
+ <label class="flex items-center">
254
+ <input type="checkbox" class="rounded text-blue-600 focus:ring-blue-500">
255
+ <span class="ml-2 text-sm text-gray-700">I agree to receive emails about German innovation news</span>
256
+ </label>
257
+ </div>
258
+ <button type="submit" class="w-full bg-blue-600 text-white py-3 px-6 rounded-lg hover:bg-blue-700 transition font-medium">Subscribe to Newsletter</button>
259
+ </form>
260
+ </div>
261
+ </div>
262
+ </section>
263
+
264
+ <!-- Footer -->
265
+ <footer class="bg-gray-900 text-white py-12">
266
+ <div class="container mx-auto px-4">
267
+ <div class="grid md:grid-cols-4 gap-8">
268
+ <div>
269
+ <h3 class="text-xl font-bold mb-4 flex items-center">
270
+ <i class="fas fa-rocket mr-2"></i> InnovationGermany
271
+ </h3>
272
+ <p class="text-gray-400">Tracking the pulse of technological advancement and entrepreneurial spirit in Germany since 2018.</p>
273
+ <div class="flex space-x-4 mt-6">
274
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
275
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
276
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
277
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
278
+ </div>
279
+ </div>
280
+ <div>
281
+ <h4 class="font-semibold text-lg mb-4">Categories</h4>
282
+ <ul class="space-y-2">
283
+ <li><a href="#" class="text-gray-400 hover:text-white">Startups</a></li>
284
+ <li><a href="#" class="text-gray-400 hover:text-white">Deep Tech</a></li>
285
+ <li><a href="#" class="text-gray-400 hover:text-white">Green Tech</a></li>
286
+ <li><a href="#" class="text-gray-400 hover:text-white">Corporate Innovation</a></li>
287
+ <li><a href="#" class="text-gray-400 hover:text-white">Research</a></li>
288
+ </ul>
289
+ </div>
290
+ <div>
291
+ <h4 class="font-semibold text-lg mb-4">Resources</h4>
292
+ <ul class="space-y-2">
293
+ <li><a href="#" class="text-gray-400 hover:text-white">Startup Map</a></li>
294
+ <li><a href="#" class="text-gray-400 hover:text-white">Funding Guide</a></li>
295
+ <li><a href="#" class="text-gray-400 hover:text-white">Tech Events</a></li>
296
+ <li><a href="#" class="text-gray-400 hover:text-white">Innovation Policy</a></li>
297
+ <li><a href="#" class="text-gray-400 hover:text-white">Research Institutions</a></li>
298
+ </ul>
299
+ </div>
300
+ <div>
301
+ <h4 class="font-semibold text-lg mb-4">Contact</h4>
302
+ <address class="not-italic text-gray-400">
303
+ <p class="mb-2">Innovation Hub Berlin</p>
304
+ <p class="mb-2">Torstraße 39, 10119 Berlin</p>
305
+ <p class="mb-2">info@innovationgermany.com</p>
306
+ <p>+49 30 1234567</p>
307
+ </address>
308
+ </div>
309
+ </div>
310
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
311
+ <p>© 2023 InnovationGermany. All rights reserved.</p>
312
+ </div>
313
+ </div>
314
+ </footer>
315
+
316
+ <script>
317
+ // Mobile menu toggle functionality
318
+ document.querySelector('button.md\\:hidden').addEventListener('click', function() {
319
+ const nav = document.querySelector('nav.md\\:block');
320
+ if (nav.classList.contains('hidden')) {
321
+ nav.classList.remove('hidden');
322
+ nav.classList.add('block', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'z-50');
323
+ const ul = nav.querySelector('ul');
324
+ ul.classList.remove('flex', 'space-x-8');
325
+ ul.classList.add('space-y-4');
326
+ } else {
327
+ nav.classList.add('hidden');
328
+ nav.classList.remove('block', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'z-50');
329
+ const ul = nav.querySelector('ul');
330
+ ul.classList.add('flex', 'space-x-8');
331
+ ul.classList.remove('space-y-4');
332
+ }
333
+ });
334
+
335
+ // Smooth scroll for anchor links
336
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
337
+ anchor.addEventListener('click', function (e) {
338
+ e.preventDefault();
339
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
340
+ behavior: 'smooth'
341
+ });
342
+ });
343
+ });
344
+
345
+ // Animation for article cards on scroll
346
+ const observer = new IntersectionObserver((entries) => {
347
+ entries.forEach(entry => {
348
+ if (entry.isIntersecting) {
349
+ entry.target.style.opacity = 1;
350
+ entry.target.style.transform = 'translateY(0)';
351
+ }
352
+ });
353
+ }, { threshold: 0.1 });
354
+
355
+ document.querySelectorAll('.article-card').forEach(card => {
356
+ card.style.opacity = 0;
357
+ card.style.transform = 'translateY(20px)';
358
+ card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
359
+ observer.observe(card);
360
+ });
361
+ </script>
362
+ <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=keithson777/warringtons-web" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
363
+ </html>