TechFiveMedia commited on
Commit
cc8e9a2
·
verified ·
1 Parent(s): 5d3cc37

Enhance with a modern, mobile responsive, midnight blue, electric heart beat type of vibe in a lively UI that's modern and prestige. - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +524 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Moncton Pulse
3
- emoji: 📈
4
- colorFrom: yellow
5
- colorTo: blue
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: moncton-pulse
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: yellow
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,524 @@
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>Moncton Pulse - Your Local Connection</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%, #10b981 100%);
12
+ }
13
+ .category-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
+ .featured-card:hover {
18
+ transform: scale(1.02);
19
+ }
20
+ .event-card:hover .event-date {
21
+ background-color: #4f46e5;
22
+ color: white;
23
+ }
24
+ </style>
25
+ </head>
26
+ <body class="font-sans antialiased text-gray-800">
27
+ <!-- Navigation -->
28
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
29
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
30
+ <div class="flex justify-between h-16">
31
+ <div class="flex items-center">
32
+ <div class="flex-shrink-0 flex items-center">
33
+ <i class="fas fa-pulse text-indigo-600 text-2xl mr-2"></i>
34
+ <span class="text-xl font-bold text-indigo-600">moncton<span class="text-emerald-500">pulse</span></span>
35
+ </div>
36
+ </div>
37
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
38
+ <a href="#" class="text-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
39
+ <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Businesses</a>
40
+ <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Events</a>
41
+ <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">News</a>
42
+ <a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">Add Your Business</a>
43
+ </div>
44
+ <div class="-mr-2 flex items-center md:hidden">
45
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
46
+ <i class="fas fa-bars"></i>
47
+ </button>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </nav>
52
+
53
+ <!-- Hero Section -->
54
+ <div class="hero-gradient text-white">
55
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
56
+ <div class="text-center">
57
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
58
+ Discover Moncton's Best
59
+ </h1>
60
+ <p class="mt-6 max-w-lg mx-auto text-xl">
61
+ Your Local Connection to amazing businesses, exciting events, and community news in Moncton, NB.
62
+ </p>
63
+ <div class="mt-10 flex flex-wrap justify-center gap-4">
64
+ <div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg px-6 py-4">
65
+ <p class="text-2xl font-bold">500+</p>
66
+ <p class="text-sm">Businesses</p>
67
+ </div>
68
+ <div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg px-6 py-4">
69
+ <p class="text-2xl font-bold">50+</p>
70
+ <p class="text-sm">Events Monthly</p>
71
+ </div>
72
+ <div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg px-6 py-4">
73
+ <p class="text-2xl font-bold">10K+</p>
74
+ <p class="text-sm">Reviews</p>
75
+ </div>
76
+ </div>
77
+ <div class="mt-10">
78
+ <div class="relative max-w-xl mx-auto">
79
+ <input type="text" placeholder="Search businesses, events..." class="w-full px-5 py-3 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-indigo-500">
80
+ <button class="absolute right-2 top-2 bg-indigo-600 text-white p-2 rounded-full hover:bg-indigo-700">
81
+ <i class="fas fa-search"></i>
82
+ </button>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+
89
+ <!-- Categories Section -->
90
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
91
+ <div class="text-center mb-12">
92
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
93
+ Explore Categories
94
+ </h2>
95
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
96
+ Find exactly what you're looking for in Moncton's vibrant business community
97
+ </p>
98
+ </div>
99
+
100
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
101
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
102
+ <div class="p-6">
103
+ <div class="flex items-center">
104
+ <div class="flex-shrink-0 bg-indigo-100 p-3 rounded-lg">
105
+ <i class="fas fa-utensils text-indigo-600 text-xl"></i>
106
+ </div>
107
+ <div class="ml-4">
108
+ <h3 class="text-lg font-medium text-gray-900">Restaurants</h3>
109
+ <p class="text-gray-500">127 businesses</p>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+
115
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
116
+ <div class="p-6">
117
+ <div class="flex items-center">
118
+ <div class="flex-shrink-0 bg-emerald-100 p-3 rounded-lg">
119
+ <i class="fas fa-shopping-bag text-emerald-600 text-xl"></i>
120
+ </div>
121
+ <div class="ml-4">
122
+ <h3 class="text-lg font-medium text-gray-900">Shopping</h3>
123
+ <p class="text-gray-500">89 businesses</p>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+
129
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
130
+ <div class="p-6">
131
+ <div class="flex items-center">
132
+ <div class="flex-shrink-0 bg-amber-100 p-3 rounded-lg">
133
+ <i class="fas fa-coffee text-amber-600 text-xl"></i>
134
+ </div>
135
+ <div class="ml-4">
136
+ <h3 class="text-lg font-medium text-gray-900">Coffee & Cafes</h3>
137
+ <p class="text-gray-500">45 businesses</p>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </div>
142
+
143
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
144
+ <div class="p-6">
145
+ <div class="flex items-center">
146
+ <div class="flex-shrink-0 bg-red-100 p-3 rounded-lg">
147
+ <i class="fas fa-dumbbell text-red-600 text-xl"></i>
148
+ </div>
149
+ <div class="ml-4">
150
+ <h3 class="text-lg font-medium text-gray-900">Fitness</h3>
151
+ <p class="text-gray-500">32 businesses</p>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
158
+ <div class="p-6">
159
+ <div class="flex items-center">
160
+ <div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
161
+ <i class="fas fa-car text-blue-600 text-xl"></i>
162
+ </div>
163
+ <div class="ml-4">
164
+ <h3 class="text-lg font-medium text-gray-900">Automotive</h3>
165
+ <p class="text-gray-500">56 businesses</p>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
172
+ <div class="p-6">
173
+ <div class="flex items-center">
174
+ <div class="flex-shrink-0 bg-purple-100 p-3 rounded-lg">
175
+ <i class="fas fa-home text-purple-600 text-xl"></i>
176
+ </div>
177
+ <div class="ml-4">
178
+ <h3 class="text-lg font-medium text-gray-900">Home Services</h3>
179
+ <p class="text-gray-500">78 businesses</p>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <div class="mt-10 text-center">
187
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
188
+ View All Categories
189
+ <i class="fas fa-chevron-right ml-2"></i>
190
+ </a>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Trending Businesses -->
195
+ <div class="bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
196
+ <div class="max-w-7xl mx-auto">
197
+ <div class="text-center mb-12">
198
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
199
+ Trending Now
200
+ </h2>
201
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
202
+ Discover the most popular and highly-rated businesses in Moncton
203
+ </p>
204
+ </div>
205
+
206
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
207
+ <!-- Business Card 1 -->
208
+ <div class="featured-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
209
+ <div class="relative">
210
+ <img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1517248135467-4bab57a8cbe9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="The Tide & Table Bistro">
211
+ <div class="absolute top-4 left-4 bg-white px-2 py-1 rounded-full text-xs font-semibold flex items-center">
212
+ <i class="fas fa-bolt text-yellow-500 mr-1"></i>
213
+ <span>Featured</span>
214
+ </div>
215
+ <div class="absolute top-4 right-4 bg-green-100 px-2 py-1 rounded-full text-xs font-semibold flex items-center">
216
+ <i class="fas fa-door-open text-green-600 mr-1"></i>
217
+ <span>Open Now</span>
218
+ </div>
219
+ </div>
220
+ <div class="p-6">
221
+ <div class="flex items-center justify-between">
222
+ <h3 class="text-xl font-bold text-gray-900">The Tide & Table Bistro</h3>
223
+ <div class="flex items-center bg-indigo-100 px-2 py-1 rounded-full">
224
+ <i class="fas fa-star text-yellow-500 mr-1"></i>
225
+ <span class="text-sm font-semibold">4.8 (234)</span>
226
+ </div>
227
+ </div>
228
+ <p class="mt-2 text-gray-600">Fine Dining</p>
229
+ <p class="mt-3 text-gray-500">Exquisite seafood with a view of the Petitcodiac River</p>
230
+ <div class="mt-4 flex flex-wrap gap-2">
231
+ <span class="px-2 py-1 bg-blue-100 text-blue-800 text-xs rounded-full">Seafood</span>
232
+ <span class="px-2 py-1 bg-pink-100 text-pink-800 text-xs rounded-full">Romantic</span>
233
+ <span class="px-2 py-1 bg-teal-100 text-teal-800 text-xs rounded-full">River View</span>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Business Card 2 -->
239
+ <div class="featured-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
240
+ <div class="relative">
241
+ <img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1478720563277-4ce0c8438c92?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Magnetic Hill Winery">
242
+ <div class="absolute top-4 left-4 bg-white px-2 py-1 rounded-full text-xs font-semibold flex items-center">
243
+ <i class="fas fa-bolt text-yellow-500 mr-1"></i>
244
+ <span>Featured</span>
245
+ </div>
246
+ <div class="absolute top-4 right-4 bg-green-100 px-2 py-1 rounded-full text-xs font-semibold flex items-center">
247
+ <i class="fas fa-door-open text-green-600 mr-1"></i>
248
+ <span>Open Now</span>
249
+ </div>
250
+ </div>
251
+ <div class="p-6">
252
+ <div class="flex items-center justify-between">
253
+ <h3 class="text-xl font-bold text-gray-900">Magnetic Hill Winery</h3>
254
+ <div class="flex items-center bg-indigo-100 px-2 py-1 rounded-full">
255
+ <i class="fas fa-star text-yellow-500 mr-1"></i>
256
+ <span class="text-sm font-semibold">4.9 (189)</span>
257
+ </div>
258
+ </div>
259
+ <p class="mt-2 text-gray-600">Winery</p>
260
+ <p class="mt-3 text-gray-500">Award-winning local wines and vineyard tours</p>
261
+ <div class="mt-4 flex flex-wrap gap-2">
262
+ <span class="px-2 py-1 bg-purple-100 text-purple-800 text-xs rounded-full">Wine</span>
263
+ <span class="px-2 py-1 bg-green-100 text-green-800 text-xs rounded-full">Tours</span>
264
+ <span class="px-2 py-1 bg-yellow-100 text-yellow-800 text-xs rounded-full">Local</span>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Business Card 3 -->
270
+ <div class="featured-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
271
+ <div class="relative">
272
+ <img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Downtown Artisan Market">
273
+ <div class="absolute top-4 left-4 bg-white px-2 py-1 rounded-full text-xs font-semibold flex items-center">
274
+ <i class="fas fa-bolt text-yellow-500 mr-1"></i>
275
+ <span>Featured</span>
276
+ </div>
277
+ <div class="absolute top-4 right-4 bg-red-100 px-2 py-1 rounded-full text-xs font-semibold flex items-center">
278
+ <i class="fas fa-door-closed text-red-600 mr-1"></i>
279
+ <span>Closed</span>
280
+ </div>
281
+ </div>
282
+ <div class="p-6">
283
+ <div class="flex items-center justify-between">
284
+ <h3 class="text-xl font-bold text-gray-900">Downtown Artisan Market</h3>
285
+ <div class="flex items-center bg-indigo-100 px-2 py-1 rounded-full">
286
+ <i class="fas fa-star text-yellow-500 mr-1"></i>
287
+ <span class="text-sm font-semibold">4.7 (156)</span>
288
+ </div>
289
+ </div>
290
+ <p class="mt-2 text-gray-600">Shopping</p>
291
+ <p class="mt-3 text-gray-500">Handcrafted goods from local artisans</p>
292
+ <div class="mt-4 flex flex-wrap gap-2">
293
+ <span class="px-2 py-1 bg-indigo-100 text-indigo-800 text-xs rounded-full">Handmade</span>
294
+ <span class="px-2 py-1 bg-yellow-100 text-yellow-800 text-xs rounded-full">Local</span>
295
+ <span class="px-2 py-1 bg-pink-100 text-pink-800 text-xs rounded-full">Gifts</span>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+
301
+ <div class="mt-10 text-center">
302
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
303
+ View All Businesses
304
+ <i class="fas fa-chevron-right ml-2"></i>
305
+ </a>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- Events Section -->
311
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
312
+ <div class="text-center mb-12">
313
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
314
+ Upcoming Events
315
+ </h2>
316
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
317
+ Don't miss out on the exciting events happening in Moncton
318
+ </p>
319
+ </div>
320
+
321
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
322
+ <!-- Event 1 -->
323
+ <div class="event-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
324
+ <div class="relative">
325
+ <img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1475721027785-f74eccf877e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Moncton Ribfest 2025">
326
+ <div class="event-date absolute top-4 left-4 bg-indigo-100 text-indigo-800 px-3 py-1 rounded-lg font-bold transition-all duration-300 ease-in-out">
327
+ July 15-17
328
+ </div>
329
+ </div>
330
+ <div class="p-6">
331
+ <h3 class="text-xl font-bold text-gray-900">Moncton Ribfest 2025</h3>
332
+ <p class="mt-2 text-gray-600 flex items-center">
333
+ <i class="fas fa-map-marker-alt text-gray-400 mr-2"></i>
334
+ Centennial Park
335
+ </p>
336
+ <div class="mt-4 flex items-center">
337
+ <i class="fas fa-users text-gray-400 mr-2"></i>
338
+ <span class="text-gray-600">1200 interested</span>
339
+ </div>
340
+ <div class="mt-6">
341
+ <a href="#" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
342
+ Learn More
343
+ <i class="fas fa-chevron-right ml-2"></i>
344
+ </a>
345
+ </div>
346
+ </div>
347
+ </div>
348
+
349
+ <!-- Event 2 -->
350
+ <div class="event-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
351
+ <div class="relative">
352
+ <img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Downtown Summer Concert Series">
353
+ <div class="event-date absolute top-4 left-4 bg-indigo-100 text-indigo-800 px-3 py-1 rounded-lg font-bold transition-all duration-300 ease-in-out">
354
+ July 22
355
+ </div>
356
+ </div>
357
+ <div class="p-6">
358
+ <h3 class="text-xl font-bold text-gray-900">Downtown Summer Concert Series</h3>
359
+ <p class="mt-2 text-gray-600 flex items-center">
360
+ <i class="fas fa-map-marker-alt text-gray-400 mr-2"></i>
361
+ Main Street
362
+ </p>
363
+ <div class="mt-4 flex items-center">
364
+ <i class="fas fa-users text-gray-400 mr-2"></i>
365
+ <span class="text-gray-600">800 interested</span>
366
+ </div>
367
+ <div class="mt-6">
368
+ <a href="#" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
369
+ Learn More
370
+ <i class="fas fa-chevron-right ml-2"></i>
371
+ </a>
372
+ </div>
373
+ </div>
374
+ </div>
375
+
376
+ <!-- Event 3 -->
377
+ <div class="event-card bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 ease-in-out">
378
+ <div class="relative">
379
+ <img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Farmers Market Grand Opening">
380
+ <div class="event-date absolute top-4 left-4 bg-indigo-100 text-indigo-800 px-3 py-1 rounded-lg font-bold transition-all duration-300 ease-in-out">
381
+ July 8
382
+ </div>
383
+ </div>
384
+ <div class="p-6">
385
+ <h3 class="text-xl font-bold text-gray-900">Farmers Market Grand Opening</h3>
386
+ <p class="mt-2 text-gray-600 flex items-center">
387
+ <i class="fas fa-map-marker-alt text-gray-400 mr-2"></i>
388
+ Riverfront Park
389
+ </p>
390
+ <div class="mt-4 flex items-center">
391
+ <i class="fas fa-users text-gray-400 mr-2"></i>
392
+ <span class="text-gray-600">500 interested</span>
393
+ </div>
394
+ <div class="mt-6">
395
+ <a href="#" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
396
+ Learn More
397
+ <i class="fas fa-chevron-right ml-2"></i>
398
+ </a>
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </div>
403
+
404
+ <div class="mt-10 text-center">
405
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
406
+ View All Events
407
+ <i class="fas fa-chevron-right ml-2"></i>
408
+ </a>
409
+ </div>
410
+ </div>
411
+
412
+ <!-- Newsletter -->
413
+ <div class="bg-indigo-700 text-white py-16 px-4 sm:px-6 lg:px-8">
414
+ <div class="max-w-3xl mx-auto text-center">
415
+ <h2 class="text-3xl font-extrabold sm:text-4xl">
416
+ Stay Connected
417
+ </h2>
418
+ <p class="mt-4 text-lg">
419
+ Sign up for our newsletter to receive updates on new businesses, events, and special offers in Moncton.
420
+ </p>
421
+ <div class="mt-8 sm:mx-auto sm:max-w-lg">
422
+ <div class="flex flex-col sm:flex-row gap-2">
423
+ <input type="email" placeholder="Enter your email" class="flex-grow px-5 py-3 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-indigo-500">
424
+ <button class="px-6 py-3 bg-emerald-500 text-white font-medium rounded-full hover:bg-emerald-600 focus:outline-none focus:ring-2 focus:ring-emerald-500">
425
+ Subscribe
426
+ </button>
427
+ </div>
428
+ <p class="mt-3 text-sm text-indigo-200">
429
+ We respect your privacy. Unsubscribe at any time.
430
+ </p>
431
+ </div>
432
+ </div>
433
+ </div>
434
+
435
+ <!-- Footer -->
436
+ <footer class="bg-gray-900 text-white">
437
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
438
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
439
+ <div>
440
+ <div class="flex items-center">
441
+ <i class="fas fa-pulse text-indigo-400 text-2xl mr-2"></i>
442
+ <span class="text-xl font-bold text-indigo-400">moncton<span class="text-emerald-400">pulse</span></span>
443
+ </div>
444
+ <p class="mt-4 text-gray-400">
445
+ Your local connection to Moncton's best businesses, events, and community news.
446
+ </p>
447
+ </div>
448
+
449
+ <div>
450
+ <h3 class="text-lg font-semibold">Quick Links</h3>
451
+ <ul class="mt-4 space-y-2">
452
+ <li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
453
+ <li><a href="#" class="text-gray-400 hover:text-white">Businesses</a></li>
454
+ <li><a href="#" class="text-gray-400 hover:text-white">Events</a></li>
455
+ <li><a href="#" class="text-gray-400 hover:text-white">News</a></li>
456
+ <li><a href="#" class="text-gray-400 hover:text-white">Add Your Business</a></li>
457
+ </ul>
458
+ </div>
459
+
460
+ <div>
461
+ <h3 class="text-lg font-semibold">Categories</h3>
462
+ <ul class="mt-4 space-y-2">
463
+ <li><a href="#" class="text-gray-400 hover:text-white">Restaurants</a></li>
464
+ <li><a href="#" class="text-gray-400 hover:text-white">Shopping</a></li>
465
+ <li><a href="#" class="text-gray-400 hover:text-white">Coffee & Cafes</a></li>
466
+ <li><a href="#" class="text-gray-400 hover:text-white">Fitness</a></li>
467
+ <li><a href="#" class="text-gray-400 hover:text-white">Automotive</a></li>
468
+ </ul>
469
+ </div>
470
+
471
+ <div>
472
+ <h3 class="text-lg font-semibold">Contact Us</h3>
473
+ <ul class="mt-4 space-y-3">
474
+ <li class="flex items-center">
475
+ <i class="fas fa-map-marker-alt text-gray-400 mr-3"></i>
476
+ <span class="text-gray-400">Downtown Moncton, NB</span>
477
+ </li>
478
+ <li class="flex items-center">
479
+ <i class="fas fa-envelope text-gray-400 mr-3"></i>
480
+ <a href="mailto:[email protected]" class="text-gray-400 hover:text-white">[email protected]</a>
481
+ </li>
482
+ <li class="flex items-center">
483
+ <i class="fas fa-phone text-gray-400 mr-3"></i>
484
+ <a href="tel:5065557853" class="text-gray-400 hover:text-white">(506) 555-PULSE</a>
485
+ </li>
486
+ </ul>
487
+ </div>
488
+ </div>
489
+
490
+ <div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
491
+ <p class="text-gray-400">
492
+ © 2025 Moncton Pulse. All rights reserved.
493
+ </p>
494
+ <div class="mt-4 md:mt-0 flex space-x-6">
495
+ <a href="#" class="text-gray-400 hover:text-white">
496
+ <i class="fab fa-facebook-f"></i>
497
+ </a>
498
+ <a href="#" class="text-gray-400 hover:text-white">
499
+ <i class="fab fa-twitter"></i>
500
+ </a>
501
+ <a href="#" class="text-gray-400 hover:text-white">
502
+ <i class="fab fa-instagram"></i>
503
+ </a>
504
+ <a href="#" class="text-gray-400 hover:text-white">
505
+ <i class="fab fa-linkedin-in"></i>
506
+ </a>
507
+ </div>
508
+ </div>
509
+
510
+ <div class="mt-6 text-center text-gray-500 text-sm">
511
+ <p>Made with <i class="fas fa-heart text-red-400"></i> in Moncton, NB</p>
512
+ </div>
513
+ </div>
514
+ </footer>
515
+
516
+ <script>
517
+ // Simple JavaScript for mobile menu toggle (would need proper implementation)
518
+ document.addEventListener('DOMContentLoaded', function() {
519
+ // This would be expanded for a real mobile menu toggle
520
+ console.log('Moncton Pulse - Your Local Connection');
521
+ });
522
+ </script>
523
+ <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=TechFiveMedia/moncton-pulse" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
524
+ </html>