Enjii commited on
Commit
ad47fdd
·
verified ·
1 Parent(s): 32c8819

life in the czech republic blog - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +407 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Http Shirendev Enkhtsetseg Huggingface Com
3
- emoji: 📚
4
- colorFrom: blue
5
- colorTo: red
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: http-shirendev-enkhtsetseg-huggingface-com
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: gray
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,407 @@
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>Life in the Czech Republic | Exploring Bohemian Culture</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
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
11
+
12
+ body {
13
+ font-family: 'Source Sans Pro', sans-serif;
14
+ }
15
+
16
+ .title-font {
17
+ font-family: 'Playfair Display', serif;
18
+ }
19
+
20
+ .hero-image {
21
+ background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1519671482749-fd81be79d5f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
22
+ background-size: cover;
23
+ background-position: center;
24
+ }
25
+
26
+ .flag-stripe {
27
+ height: 4px;
28
+ }
29
+
30
+ .flag-red {
31
+ background-color: #D7141A;
32
+ }
33
+
34
+ .flag-white {
35
+ background-color: white;
36
+ }
37
+
38
+ .flag-blue {
39
+ background-color: #11457E;
40
+ }
41
+
42
+ .post-hover:hover {
43
+ transform: translateY(-5px);
44
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
45
+ }
46
+
47
+ .transition-all {
48
+ transition: all 0.3s ease;
49
+ }
50
+
51
+ .text-balance {
52
+ text-wrap: balance;
53
+ }
54
+ </style>
55
+ </head>
56
+ <body class="bg-gray-50">
57
+ <!-- Flag stripes -->
58
+ <div class="flag-stripe flag-red"></div>
59
+ <div class="flag-stripe flag-white"></div>
60
+ <div class="flag-stripe flag-blue"></div>
61
+
62
+ <!-- Navigation -->
63
+ <nav class="bg-white shadow-md">
64
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
65
+ <a href="#" class="flex items-center space-x-2">
66
+ <img src="https://cdn-icons-png.flaticon.com/512/197/197576.png" alt="Czech Flag" class="w-8 h-8">
67
+ <span class="title-font text-xl font-bold text-gray-800">Český Život</span>
68
+ </a>
69
+
70
+ <div class="hidden md:flex space-x-8">
71
+ <a href="#" class="text-gray-700 hover:text-red-600">Home</a>
72
+ <a href="#" class="text-gray-700 hover:text-red-600">Culture</a>
73
+ <a href="#" class="text-gray-700 hover:text-red-600">Food</a>
74
+ <a href="#" class="text-gray-700 hover:text-red-600">Travel</a>
75
+ <a href="#" class="text-gray-700 hover:text-red-600">Language</a>
76
+ </div>
77
+
78
+ <div class="flex items-center space-x-4">
79
+ <button class="md:hidden text-gray-700">
80
+ <i class="fas fa-bars text-xl"></i>
81
+ </button>
82
+ <button class="hidden md:block bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-full transition-all">
83
+ Subscribe
84
+ </button>
85
+ </div>
86
+ </div>
87
+ </nav>
88
+
89
+ <!-- Hero Section -->
90
+ <header class="hero-image h-96 flex items-center justify-center text-white">
91
+ <div class="text-center px-4 max-w-3xl">
92
+ <h1 class="title-font text-4xl md:text-6xl font-bold mb-4">Life in the Heart of Europe</h1>
93
+ <p class="text-xl md:text-2xl mb-8">Discover the charm, culture, and daily rhythms of the Czech Republic</p>
94
+ <button class="bg-white text-red-600 hover:bg-gray-100 px-6 py-3 rounded-full font-semibold transition-all">
95
+ Explore Czech Culture <i class="fas fa-chevron-right ml-2"></i>
96
+ </button>
97
+ </div>
98
+ </header>
99
+
100
+ <!-- Featured Posts -->
101
+ <section class="py-12 bg-white">
102
+ <div class="container mx-auto px-4">
103
+ <h2 class="title-font text-3xl font-bold text-center mb-12">Featured Stories</h2>
104
+
105
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
106
+ <!-- Post 1 -->
107
+ <article class="bg-gray-50 rounded-lg overflow-hidden shadow-md post-hover transition-all">
108
+ <img src="https://images.unsplash.com/photo-1577285505333-4afdb92a68a8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Prague streets" class="w-full h-48 object-cover">
109
+ <div class="p-6">
110
+ <div class="flex items-center space-x-2 mb-3">
111
+ <span class="bg-red-100 text-red-600 text-xs px-2 py-1 rounded">Culture</span>
112
+ <span class="text-gray-500 text-sm"><i class="far fa-clock mr-1"></i> 5 min read</span>
113
+ </div>
114
+ <h3 class="title-font text-xl font-bold mb-2 text-balance">Navigating Prague: A Local's Guide to the City</h3>
115
+ <p class="text-gray-600 mb-4">Discover hidden gems beyond Charles Bridge and Prague Castle that most tourists never see.</p>
116
+ <div class="flex items-center justify-between">
117
+ <div class="flex items-center">
118
+ <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Author" class="w-8 h-8 rounded-full mr-2">
119
+ <span class="text-sm text-gray-700">Anna Nováková</span>
120
+ </div>
121
+ <button class="text-red-600 hover:text-red-700 text-sm font-medium">
122
+ Read More <i class="fas fa-chevron-right ml-1"></i>
123
+ </button>
124
+ </div>
125
+ </div>
126
+ </article>
127
+
128
+ <!-- Post 2 -->
129
+ <article class="bg-gray-50 rounded-lg overflow-hidden shadow-md post-hover transition-all">
130
+ <img src="https://images.unsplash.com/photo-1590803240176-a23642f38537?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Czech food" class="w-full h-48 object-cover">
131
+ <div class="p-6">
132
+ <div class="flex items-center space-x-2 mb-3">
133
+ <span class="bg-blue-100 text-blue-600 text-xs px-2 py-1 rounded">Food</span>
134
+ <span class="text-gray-500 text-sm"><i class="far fa-clock mr-1"></i> 7 min read</span>
135
+ </div>
136
+ <h3 class="title-font text-xl font-bold mb-2 text-balance">Beyond Goulash: Czech Cuisine Explained</h3>
137
+ <p class="text-gray-600 mb-4">From svíčková to trdelník, explore the rich flavors that define Czech culinary tradition.</p>
138
+ <div class="flex items-center justify-between">
139
+ <div class="flex items-center">
140
+ <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Author" class="w-8 h-8 rounded-full mr-2">
141
+ <span class="text-sm text-gray-700">Jan Dvořák</span>
142
+ </div>
143
+ <button class="text-red-600 hover:text-red-700 text-sm font-medium">
144
+ Read More <i class="fas fa-chevron-right ml-1"></i>
145
+ </button>
146
+ </div>
147
+ </div>
148
+ </article>
149
+
150
+ <!-- Post 3 -->
151
+ <article class="bg-gray-50 rounded-lg overflow-hidden shadow-md post-hover transition-all">
152
+ <img src="https://images.unsplash.com/photo-1549877452-9c387954fbc2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Czech countryside" class="w-full h-48 object-cover">
153
+ <div class="p-6">
154
+ <div class="flex items-center space-x-2 mb-3">
155
+ <span class="bg-green-100 text-green-600 text-xs px-2 py-1 rounded">Travel</span>
156
+ <span class="text-gray-500 text-sm"><i class="far fa-clock mr-1"></i> 6 min read</span>
157
+ </div>
158
+ <h3 class="title-font text-xl font-bold mb-2 text-balance">The Bohemian Countryside: Escaping the City</h3>
159
+ <p class="text-gray-600 mb-4">Why weekends in Český Krumlov, Karlštejn, and beyond should be on every expat's calendar.</p>
160
+ <div class="flex items-center justify-between">
161
+ <div class="flex items-center">
162
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Author" class="w-8 h-8 rounded-full mr-2">
163
+ <span class="text-sm text-gray-700">Eva Svobodová</span>
164
+ </div>
165
+ <button class="text-red-600 hover:text-red-700 text-sm font-medium">
166
+ Read More <i class="fas fa-chevron-right ml-1"></i>
167
+ </button>
168
+ </div>
169
+ </div>
170
+ </article>
171
+ </div>
172
+
173
+ <div class="text-center mt-12">
174
+ <button class="border-2 border-red-600 text-red-600 hover:bg-red-600 hover:text-white px-6 py-2 rounded-full font-medium transition-all">
175
+ View All Articles <i class="fas fa-arrow-right ml-2"></i>
176
+ </button>
177
+ </div>
178
+ </div>
179
+ </section>
180
+
181
+ <!-- Quick Facts Section -->
182
+ <section class="py-12 bg-gray-100">
183
+ <div class="container mx-auto px-4">
184
+ <h2 class="title-font text-3xl font-bold text-center mb-12">Czech Republic at a Glance</h2>
185
+
186
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
187
+ <div class="bg-white p-6 rounded-lg shadow-sm">
188
+ <div class="text-red-600 text-4xl mb-3">
189
+ <i class="fas fa-beer"></i>
190
+ </div>
191
+ <h3 class="font-bold mb-1">Cheapest Beer</h3>
192
+ <p class="text-gray-600 text-sm">World's lowest beer prices at ~$1.50/pint</p>
193
+ </div>
194
+
195
+ <div class="bg-white p-6 rounded-lg shadow-sm">
196
+ <div class="text-red-600 text-4xl mb-3">
197
+ <i class="fas fa-landmark"></i>
198
+ </div>
199
+ <h3 class="font-bold mb-1">2000+ Castles</h3>
200
+ <p class="text-gray-600 text-sm">Highest castle density in the world</p>
201
+ </div>
202
+
203
+ <div class="bg-white p-6 rounded-lg shadow-sm">
204
+ <div class="text-red-600 text-4xl mb-3">
205
+ <i class="fas fa-language"></i>
206
+ </div>
207
+ <h3 class="font-bold mb-1">Čeština</h3>
208
+ <p class="text-gray-600 text-sm">Czech is considered a difficult language</p>
209
+ </div>
210
+
211
+ <div class="bg-white p-6 rounded-lg shadow-sm">
212
+ <div class="text-red-600 text-4xl mb-3">
213
+ <i class="fas fa-heart"></i>
214
+ </div>
215
+ <h3 class="font-bold mb-1">High Happiness</h3>
216
+ <p class="text-gray-600 text-sm">Ranked among world's happiest nations</p>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </section>
221
+
222
+ <!-- Latest Posts -->
223
+ <section class="py-12 bg-white">
224
+ <div class="container mx-auto px-4">
225
+ <div class="flex flex-col md:flex-row justify-between items-center mb-12">
226
+ <h2 class="title-font text-3xl font-bold mb-4 md:mb-0">Latest Articles</h2>
227
+ <div class="flex space-x-2">
228
+ <button class="px-4 py-2 bg-gray-100 text-gray-700 rounded-md hover:bg-gray-200 transition-all">Culture</button>
229
+ <button class="px-4 py-2 bg-gray-100 text-gray-700 rounded-md hover:bg-gray-200 transition-all">Travel</button>
230
+ <button class="px-4 py-2 bg-gray-100 text-gray-700 rounded-md hover:bg-gray-200 transition-all">Food</button>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
235
+ <!-- Large Featured Post -->
236
+ <article class="border-2 border-gray-200 rounded-lg overflow-hidden flex flex-col md:flex-row">
237
+ <img src="https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1493&q=80" alt="Czech Christmas" class="w-full md:w-1/2 h-64 md:h-auto object-cover">
238
+ <div class="p-6 md:w-1/2 flex flex-col justify-between">
239
+ <div>
240
+ <span class="bg-red-100 text-red-600 text-xs px-2 py-1 rounded mb-3 inline-block">Holidays</span>
241
+ <h3 class="title-font text-xl font-bold mb-3">Czech Christmas Traditions Explained</h3>
242
+ <p class="text-gray-600 mb-4">From carp in the bathtub to golden pig predictions, Czech Christmas traditions are wonderfully unique. Learn what makes the holidays special here.</p>
243
+ </div>
244
+ <div class="flex items-center justify-between">
245
+ <div class="flex items-center">
246
+ <img src="https://randomuser.me/api/portraits/women/24.jpg" alt="Author" class="w-8 h-8 rounded-full mr-2">
247
+ <span class="text-sm text-gray-700">Lucie Králová</span>
248
+ </div>
249
+ <span class="text-gray-500 text-sm"><i class="far fa-clock mr-1"></i> 8 min read</span>
250
+ </div>
251
+ </div>
252
+ </article>
253
+
254
+ <!-- Smaller Posts -->
255
+ <div class="space-y-6">
256
+ <article class="border-b pb-6">
257
+ <span class="bg-blue-100 text-blue-600 text-xs px-2 py-1 rounded mb-2 inline-block">Transportation</span>
258
+ <h3 class="title-font text-lg font-bold mb-2">Mastering Czech Public Transport</h3>
259
+ <p class="text-gray-600 mb-3">From PID tickets to night trams, learn how to navigate Prague's excellent transport system like a local.</p>
260
+ <div class="flex items-center text-sm text-gray-500">
261
+ <span>Petr Malý</span>
262
+ <span class="mx-2">•</span>
263
+ <span>Dec 12, 2023</span>
264
+ <span class="mx-2">•</span>
265
+ <span>4 min read</span>
266
+ </div>
267
+ </article>
268
+
269
+ <article class="border-b pb-6">
270
+ <span class="bg-green-100 text-green-600 text-xs px-2 py-1 rounded mb-2 inline-block">Money</span>
271
+ <h3 class="title-font text-lg font-bold mb-2">Cost of Living in Czech Republic</h3>
272
+ <p class="text-gray-600 mb-3">How much does it really cost to live comfortably in Prague and other Czech cities? A detailed breakdown.</p>
273
+ <div class="flex items-center text-sm text-gray-500">
274
+ <span>Jana Horáková</span>
275
+ <span class="mx-2">•</span>
276
+ <span>Nov 28, 2023</span>
277
+ <span class="mx-2">•</span>
278
+ <span>9 min read</span>
279
+ </div>
280
+ </article>
281
+
282
+ <article>
283
+ <span class="bg-purple-100 text-purple-600 text-xs px-2 py-1 rounded mb-2 inline-block">Language</span>
284
+ <h3 class="title-font text-lg font-bold mb-2">Essential Czech Phrases for Beginners</h3>
285
+ <p class="text-gray-600 mb-3">You don't need fluency, but these 20+ phrases will earn you smiles from locals.</p>
286
+ <div class="flex items-center text-sm text-gray-500">
287
+ <span>Martin Čech</span>
288
+ <span class="mx-2">•</span>
289
+ <span>Nov 15, 2023</span>
290
+ <span class="mx-2">•</span>
291
+ <span>5 min read</span>
292
+ </div>
293
+ </article>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </section>
298
+
299
+ <!-- Newsletter -->
300
+ <section class="py-12 bg-red-600 text-white">
301
+ <div class="container mx-auto px-4 text-center max-w-2xl">
302
+ <h2 class="title-font text-3xl font-bold mb-4">Get Bohemian Insights</h2>
303
+ <p class="text-xl mb-8">Join our newsletter for monthly updates on Czech culture, language tips, and hidden travel gems.</p>
304
+
305
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
306
+ <input type="email" placeholder="Your email address" class="px-4 py-3 rounded-full w-full sm:w-96 text-gray-800 focus:outline-none focus:ring-2 focus:ring-red-300">
307
+ <button class="bg-white text-red-600 hover:bg-gray-100 px-6 py-3 rounded-full font-semibold whitespace-nowrap transition-all">
308
+ Subscribe Now <i class="fas fa-paper-plane ml-2"></i>
309
+ </button>
310
+ </div>
311
+
312
+ <p class="text-red-100 mt-4 text-sm">We respect your privacy. Unsubscribe at any time.</p>
313
+ </div>
314
+ </section>
315
+
316
+ <!-- Footer -->
317
+ <footer class="bg-gray-900 text-white pt-12 pb-6">
318
+ <div class="container mx-auto px-4">
319
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
320
+ <div>
321
+ <h3 class="title-font text-lg font-bold mb-4">Český Život</h3>
322
+ <p class="text-gray-400">Exploring Czech culture, traditions, and daily life through the eyes of locals and expats.</p>
323
+ <div class="flex space-x-4 mt-4">
324
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
325
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
326
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
327
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-pinterest"></i></a>
328
+ </div>
329
+ </div>
330
+
331
+ <div>
332
+ <h4 class="font-bold mb-4">Explore</h4>
333
+ <ul class="space-y-2">
334
+ <li><a href="#" class="text-gray-400 hover:text-white">Prague Living</a></li>
335
+ <li><a href="#" class="text-gray-400 hover:text-white">Regional Guides</a></li>
336
+ <li><a href="#" class="text-gray-400 hover:text-white">Czech Traditions</a></li>
337
+ <li><a href="#" class="text-gray-400 hover:text-white">Expats Resources</a></li>
338
+ <li><a href="#" class="text-gray-400 hover:text-white">Photo Essays</a></li>
339
+ </ul>
340
+ </div>
341
+
342
+ <div>
343
+ <h4 class="font-bold mb-4">About</h4>
344
+ <ul class="space-y-2">
345
+ <li><a href="#" class="text-gray-400 hover:text-white">Our Story</a></li>
346
+ <li><a href="#" class="text-gray-400 hover:text-white">Contributors</a></li>
347
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
348
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
349
+ <li><a href="#" class="text-gray-400 hover:text-white">Work With Us</a></li>
350
+ </ul>
351
+ </div>
352
+
353
+ <div>
354
+ <h4 class="font-bold mb-4">Popular Tags</h4>
355
+ <div class="flex flex-wrap gap-2">
356
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">History</a>
357
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Festivals</a>
358
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Hiking</a>
359
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Beer</a>
360
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Language</a>
361
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Visa Guide</a>
362
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Shopping</a>
363
+ <a href="#" class="bg-gray-800 hover:bg-red-600 text-gray-100 px-3 py-1 rounded-full text-sm">Nature</a>
364
+ </div>
365
+ </div>
366
+ </div>
367
+
368
+ <div class="border-t border-gray-800 pt-6 flex flex-col md:flex-row justify-between items-center">
369
+ <p class="text-gray-400 text-sm mb-2 md:mb-0">© 2023 Český Život. All rights reserved.</p>
370
+ <div class="text-gray-400 text-sm">
371
+ Made with <i class="fas fa-heart text-red-400"></i> in Prague
372
+ </div>
373
+ </div>
374
+ </div>
375
+ </footer>
376
+
377
+ <script>
378
+ // Simple mobile menu toggle functionality
379
+ document.addEventListener('DOMContentLoaded', function() {
380
+ const mobileMenuButton = document.querySelector('.md\\:hidden');
381
+ // In a real implementation, you would add menu toggle functionality here
382
+ mobileMenuButton.addEventListener('click', function() {
383
+ alert('Mobile menu would open here in a full implementation');
384
+ });
385
+
386
+ // Add animation to cards when they come into view
387
+ const observerOptions = {
388
+ threshold: 0.1,
389
+ rootMargin: '0px 0px -50px 0px'
390
+ };
391
+
392
+ const observer = new IntersectionObserver((entries) => {
393
+ entries.forEach(entry => {
394
+ if (entry.isIntersecting) {
395
+ entry.target.classList.add('animate-fadeIn');
396
+ observer.unobserve(entry.target);
397
+ }
398
+ });
399
+ }, observerOptions);
400
+
401
+ document.querySelectorAll('.post-hover').forEach(card => {
402
+ observer.observe(card);
403
+ });
404
+ });
405
+ </script>
406
+ <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=Enjii/http-shirendev-enkhtsetseg-huggingface-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
407
+ </html>