File size: 30,069 Bytes
d07dbd7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AT Connect - Social Network</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .wave-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-shape svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }
        .wave-shape .shape-fill {
            fill: #FFFFFF;
        }
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background-color: #ef4444;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
        }
        .online-dot {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 12px;
            height: 12px;
            background-color: #10b981;
            border-radius: 50%;
            border: 2px solid white;
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Navigation -->
    <nav class="gradient-bg text-white shadow-lg">
        <div class="container mx-auto px-4 py-3">
            <div class="flex justify-between items-center">
                <div class="flex items-center space-x-2">
                    <i class="fas fa-users text-2xl"></i>
                    <span class="text-xl font-bold">AT Connect</span>
                </div>
                <div class="hidden md:flex items-center space-x-6">
                    <a href="#" class="hover:text-gray-200 transition"><i class="fas fa-home mr-1"></i> Home</a>
                    <a href="#" class="hover:text-gray-200 transition"><i class="fas fa-user-friends mr-1"></i> Network</a>
                    <a href="#" class="hover:text-gray-200 transition"><i class="fas fa-bell mr-1"></i> Notifications</a>
                    <a href="#" class="hover:text-gray-200 transition"><i class="fas fa-envelope mr-1"></i> Messages</a>
                </div>
                <div class="flex items-center space-x-4">
                    <div class="relative">
                        <button class="p-1 rounded-full bg-white bg-opacity-20 hover:bg-opacity-30 transition">
                            <i class="fas fa-bell"></i>
                            <span class="notification-badge">3</span>
                        </button>
                    </div>
                    <div class="relative">
                        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-8 h-8 rounded-full object-cover border-2 border-white">
                        <span class="online-dot"></span>
                    </div>
                    <button class="md:hidden text-white focus:outline-none">
                        <i class="fas fa-bars text-xl"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <div class="gradient-bg text-white relative">
        <div class="container mx-auto px-4 py-16 md:py-24">
            <div class="max-w-3xl mx-auto text-center">
                <h1 class="text-4xl md:text-5xl font-bold mb-6">Connect with Professionals</h1>
                <p class="text-xl mb-8 opacity-90">Join AT Connect to build your professional network, discover opportunities, and grow your career.</p>
                <div class="flex flex-col sm:flex-row justify-center gap-4">
                    <button class="bg-white text-indigo-700 hover:bg-gray-100 px-6 py-3 rounded-full font-semibold transition shadow-lg">
                        Sign Up Now
                    </button>
                    <button class="bg-transparent border-2 border-white hover:bg-white hover:bg-opacity-10 px-6 py-3 rounded-full font-semibold transition shadow-lg">
                        Learn More
                    </button>
                </div>
            </div>
        </div>
        <div class="wave-shape">
            <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
                <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
            </svg>
        </div>
    </div>

    <!-- Main Content -->
    <div class="container mx-auto px-4 py-12">
        <div class="flex flex-col lg:flex-row gap-8">
            <!-- Left Sidebar -->
            <div class="lg:w-1/4">
                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <div class="flex flex-col items-center">
                        <div class="relative mb-4">
                            <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-24 h-24 rounded-full object-cover border-4 border-indigo-100">
                            <span class="online-dot"></span>
                        </div>
                        <h3 class="text-xl font-bold">Sarah Johnson</h3>
                        <p class="text-gray-500 mb-4">UX Designer @ TechCorp</p>
                        <div class="w-full border-t border-gray-200 pt-4">
                            <div class="flex justify-between text-sm text-gray-600 mb-2">
                                <span>Connections</span>
                                <span class="font-semibold">1,243</span>
                            </div>
                            <div class="flex justify-between text-sm text-gray-600">
                                <span>Posts</span>
                                <span class="font-semibold">87</span>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <h3 class="font-bold text-lg mb-4 flex items-center">
                        <i class="fas fa-users mr-2 text-indigo-500"></i> My Groups
                    </h3>
                    <ul class="space-y-3">
                        <li class="flex items-center">
                            <div class="w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
                                <i class="fas fa-code text-indigo-500 text-sm"></i>
                            </div>
                            <span>Web Developers</span>
                        </li>
                        <li class="flex items-center">
                            <div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
                                <i class="fas fa-paint-brush text-blue-500 text-sm"></i>
                            </div>
                            <span>Creative Designers</span>
                        </li>
                        <li class="flex items-center">
                            <div class="w-8 h-8 rounded-full bg-green-100 flex items-center justify-center mr-3">
                                <i class="fas fa-chart-line text-green-500 text-sm"></i>
                            </div>
                            <span>Digital Marketers</span>
                        </li>
                    </ul>
                    <button class="mt-4 text-indigo-500 text-sm font-semibold hover:text-indigo-700 transition">
                        See all groups <i class="fas fa-chevron-right ml-1"></i>
                    </button>
                </div>

                <div class="bg-white rounded-xl shadow-md p-6 card-hover">
                    <h3 class="font-bold text-lg mb-4 flex items-center">
                        <i class="fas fa-hashtag mr-2 text-purple-500"></i> Trending Hashtags
                    </h3>
                    <div class="space-y-2">
                        <div class="flex items-center">
                            <span class="bg-gray-100 text-gray-800 text-xs font-medium px-2.5 py-0.5 rounded mr-2">#</span>
                            <span class="font-medium">webdesign</span>
                        </div>
                        <div class="flex items-center">
                            <span class="bg-gray-100 text-gray-800 text-xs font-medium px-2.5 py-0.5 rounded mr-2">#</span>
                            <span class="font-medium">remotejobs</span>
                        </div>
                        <div class="flex items-center">
                            <span class="bg-gray-100 text-gray-800 text-xs font-medium px-2.5 py-0.5 rounded mr-2">#</span>
                            <span class="font-medium">technews</span>
                        </div>
                        <div class="flex items-center">
                            <span class="bg-gray-100 text-gray-800 text-xs font-medium px-2.5 py-0.5 rounded mr-2">#</span>
                            <span class="font-medium">careergrowth</span>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Main Feed -->
            <div class="lg:w-2/4">
                <!-- Create Post -->
                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <div class="flex items-start mb-4">
                        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-10 h-10 rounded-full object-cover mr-3">
                        <input type="text" placeholder="What's on your mind?" class="bg-gray-100 rounded-full px-4 py-2 w-full focus:outline-none focus:ring-2 focus:ring-indigo-200">
                    </div>
                    <div class="flex justify-between border-t pt-4">
                        <button class="flex items-center text-gray-500 hover:text-indigo-500 transition">
                            <i class="fas fa-image text-lg mr-2"></i> Photo
                        </button>
                        <button class="flex items-center text-gray-500 hover:text-indigo-500 transition">
                            <i class="fas fa-video text-lg mr-2"></i> Video
                        </button>
                        <button class="flex items-center text-gray-500 hover:text-indigo-500 transition">
                            <i class="fas fa-calendar-alt text-lg mr-2"></i> Event
                        </button>
                        <button class="flex items-center text-gray-500 hover:text-indigo-500 transition">
                            <i class="fas fa-newspaper text-lg mr-2"></i> Article
                        </button>
                    </div>
                </div>

                <!-- Post 1 -->
                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <div class="flex justify-between items-start mb-4">
                        <div class="flex items-center">
                            <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile" class="w-10 h-10 rounded-full object-cover mr-3">
                            <div>
                                <h4 class="font-semibold">Michael Chen</h4>
                                <p class="text-gray-500 text-sm">Product Manager @ InnovateTech 路 2h ago</p>
                            </div>
                        </div>
                        <button class="text-gray-400 hover:text-gray-600">
                            <i class="fas fa-ellipsis-h"></i>
                        </button>
                    </div>
                    <p class="mb-4">Just launched our new product! 馃殌 After months of hard work with an amazing team, we're excited to share what we've built. Check it out and let me know your thoughts!</p>
                    <div class="bg-gray-100 rounded-xl p-4 mb-4">
                        <div class="flex items-center mb-2">
                            <div class="w-12 h-12 bg-indigo-500 rounded-lg flex items-center justify-center text-white mr-3">
                                <i class="fas fa-box-open text-xl"></i>
                            </div>
                            <div>
                                <h4 class="font-semibold">ProductX</h4>
                                <p class="text-gray-500 text-sm">innovate.tech/products/x</p>
                            </div>
                        </div>
                        <p class="text-sm">The all-in-one solution for your productivity needs. Streamline your workflow with our AI-powered tools.</p>
                    </div>
                    <div class="flex justify-between text-gray-500 border-t border-b py-3 mb-4">
                        <button class="flex items-center hover:text-indigo-500 transition">
                            <i class="far fa-thumbs-up mr-1"></i> Like
                        </button>
                        <button class="flex items-center hover:text-indigo-500 transition">
                            <i class="far fa-comment mr-1"></i> Comment
                        </button>
                        <button class="flex items-center hover:text-indigo-500 transition">
                            <i class="fas fa-share mr-1"></i> Share
                        </button>
                    </div>
                    <div class="flex items-start">
                        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-8 h-8 rounded-full object-cover mr-3">
                        <div class="flex-1">
                            <input type="text" placeholder="Write a comment..." class="bg-gray-100 rounded-full px-4 py-2 w-full focus:outline-none focus:ring-2 focus:ring-indigo-200">
                        </div>
                    </div>
                </div>

                <!-- Post 2 -->
                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <div class="flex justify-between items-start mb-4">
                        <div class="flex items-center">
                            <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Profile" class="w-10 h-10 rounded-full object-cover mr-3">
                            <div>
                                <h4 class="font-semibold">Jessica Williams</h4>
                                <p class="text-gray-500 text-sm">Senior Developer @ CodeCraft 路 5h ago</p>
                            </div>
                        </div>
                        <button class="text-gray-400 hover:text-gray-600">
                            <i class="fas fa-ellipsis-h"></i>
                        </button>
                    </div>
                    <p class="mb-4">Sharing some insights from my journey as a developer. Here are 5 lessons I wish I knew when I started coding:</p>
                    <ol class="list-decimal list-inside mb-4 space-y-2">
                        <li>Focus on fundamentals before frameworks</li>
                        <li>Build projects, not just tutorials</li>
                        <li>Learn how to debug effectively</li>
                        <li>Contribute to open source</li>
                        <li>Network with other developers</li>
                    </ol>
                    <div class="flex justify-between text-gray-500 border-t border-b py-3 mb-4">
                        <button class="flex items-center hover:text-indigo-500 transition">
                            <i class="far fa-thumbs-up mr-1"></i> Like
                        </button>
                        <button class="flex items-center hover:text-indigo-500 transition">
                            <i class="far fa-comment mr-1"></i> Comment
                        </button>
                        <button class="flex items-center hover:text-indigo-500 transition">
                            <i class="fas fa-share mr-1"></i> Share
                        </button>
                    </div>
                    <div class="flex items-start">
                        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-8 h-8 rounded-full object-cover mr-3">
                        <div class="flex-1">
                            <input type="text" placeholder="Write a comment..." class="bg-gray-100 rounded-full px-4 py-2 w-full focus:outline-none focus:ring-2 focus:ring-indigo-200">
                        </div>
                    </div>
                </div>
            </div>

            <!-- Right Sidebar -->
            <div class="lg:w-1/4">
                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <h3 class="font-bold text-lg mb-4 flex items-center">
                        <i class="fas fa-bell mr-2 text-red-500"></i> Notifications
                    </h3>
                    <div class="space-y-4">
                        <div class="flex items-start">
                            <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
                                <i class="fas fa-user-plus text-indigo-500"></i>
                            </div>
                            <div>
                                <p class="text-sm"><span class="font-semibold">David Kim</span> sent you a connection request</p>
                                <p class="text-xs text-gray-500">30 minutes ago</p>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
                                <i class="fas fa-comment text-blue-500"></i>
                            </div>
                            <div>
                                <p class="text-sm"><span class="font-semibold">Lisa Park</span> commented on your post</p>
                                <p class="text-xs text-gray-500">2 hours ago</p>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-3">
                                <i class="fas fa-thumbs-up text-green-500"></i>
                            </div>
                            <div>
                                <p class="text-sm"><span class="font-semibold">12 people</span> liked your recent update</p>
                                <p class="text-xs text-gray-500">5 hours ago</p>
                            </div>
                        </div>
                    </div>
                    <button class="mt-4 text-indigo-500 text-sm font-semibold hover:text-indigo-700 transition">
                        See all notifications <i class="fas fa-chevron-right ml-1"></i>
                    </button>
                </div>

                <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-hover">
                    <h3 class="font-bold text-lg mb-4 flex items-center">
                        <i class="fas fa-calendar-alt mr-2 text-yellow-500"></i> Upcoming Events
                    </h3>
                    <div class="space-y-4">
                        <div class="flex items-start">
                            <div class="w-12 h-12 bg-purple-100 rounded-lg flex flex-col items-center justify-center mr-3">
                                <span class="font-bold text-purple-700">MAY</span>
                                <span class="text-lg font-bold">15</span>
                            </div>
                            <div>
                                <h4 class="font-semibold">Tech Conference 2023</h4>
                                <p class="text-sm text-gray-500">Virtual Event 路 10:00 AM</p>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <div class="w-12 h-12 bg-blue-100 rounded-lg flex flex-col items-center justify-center mr-3">
                                <span class="font-bold text-blue-700">MAY</span>
                                <span class="text-lg font-bold">20</span>
                            </div>
                            <div>
                                <h4 class="font-semibold">UX Design Workshop</h4>
                                <p class="text-sm text-gray-500">Design Hub 路 2:00 PM</p>
                            </div>
                        </div>
                    </div>
                    <button class="mt-4 text-indigo-500 text-sm font-semibold hover:text-indigo-700 transition">
                        View all events <i class="fas fa-chevron-right ml-1"></i>
                    </button>
                </div>

                <div class="bg-white rounded-xl shadow-md p-6 card-hover">
                    <h3 class="font-bold text-lg mb-4 flex items-center">
                        <i class="fas fa-user-plus mr-2 text-green-500"></i> People You May Know
                    </h3>
                    <div class="space-y-4">
                        <div class="flex items-center">
                            <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Profile" class="w-10 h-10 rounded-full object-cover mr-3">
                            <div class="flex-1">
                                <h4 class="font-semibold">Robert Taylor</h4>
                                <p class="text-xs text-gray-500">Marketing Director</p>
                            </div>
                            <button class="text-indigo-500 hover:text-indigo-700">
                                <i class="fas fa-user-plus"></i>
                            </button>
                        </div>
                        <div class="flex items-center">
                            <img src="https://randomuser.me/api/portraits/women/33.jpg" alt="Profile" class="w-10 h-10 rounded-full object-cover mr-3">
                            <div class="flex-1">
                                <h4 class="font-semibold">Emily Chen</h4>
                                <p class="text-xs text-gray-500">Data Scientist</p>
                            </div>
                            <button class="text-indigo-500 hover:text-indigo-700">
                                <i class="fas fa-user-plus"></i>
                            </button>
                        </div>
                        <div class="flex items-center">
                            <img src="https://randomuser.me/api/portraits/men/42.jpg" alt="Profile" class="w-10 h-10 rounded-full object-cover mr-3">
                            <div class="flex-1">
                                <h4 class="font-semibold">James Wilson</h4>
                                <p class="text-xs text-gray-500">Product Designer</p>
                            </div>
                            <button class="text-indigo-500 hover:text-indigo-700">
                                <i class="fas fa-user-plus"></i>
                            </button>
                        </div>
                    </div>
                    <button class="mt-4 text-indigo-500 text-sm font-semibold hover:text-indigo-700 transition">
                        See all suggestions <i class="fas fa-chevron-right ml-1"></i>
                    </button>
                </div>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-12">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-xl font-bold mb-4 flex items-center">
                        <i class="fas fa-users mr-2"></i> AT Connect
                    </h3>
                    <p class="text-gray-400">Connecting professionals worldwide to share knowledge, opportunities, and grow together.</p>
                </div>
                <div>
                    <h4 class="font-semibold text-lg mb-4">Company</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold text-lg mb-4">Support</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Safety</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Community Guidelines</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold text-lg mb-4">Connect</h4>
                    <div class="flex space-x-4 mb-4">
                        <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-indigo-500 transition">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-blue-400 transition">
                            <i class="fab fa-twitter"></i>
                        </a>
                        <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-pink-600 transition">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-red-500 transition">
                            <i class="fab fa-youtube"></i>
                        </a>
                    </div>
                    <p class="text-gray-400 text-sm">Download our mobile app</p>
                    <div class="flex space-x-2 mt-2">
                        <button class="bg-black text-white px-3 py-1 rounded text-sm flex items-center">
                            <i class="fab fa-apple mr-1"></i> App Store
                        </button>
                        <button class="bg-black text-white px-3 py-1 rounded text-sm flex items-center">
                            <i class="fab fa-google-play mr-1"></i> Play Store
                        </button>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
                <p>漏 2023 AT Connect. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        // Simple JavaScript for demonstration
        document.addEventListener('DOMContentLoaded', function() {
            // Mobile menu toggle would go here
            console.log('AT Connect is ready!');
            
            // Example: Add click event to like buttons
            document.querySelectorAll('.far.fa-thumbs-up').forEach(button => {
                button.addEventListener('click', function() {
                    if (this.classList.contains('far')) {
                        this.classList.remove('far');
                        this.classList.add('fas', 'text-indigo-500');
                    } else {
                        this.classList.remove('fas', 'text-indigo-500');
                        this.classList.add('far');
                    }
                });
            });
            
            // Example: Add connection request
            document.querySelectorAll('.fa-user-plus').forEach(button => {
                button.addEventListener('click', function() {
                    if (this.classList.contains('fa-user-plus')) {
                        this.classList.remove('fa-user-plus');
                        this.classList.add('fa-check', 'text-green-500');
                        this.parentNode.textContent = 'Pending';
                    }
                });
            });
        });
    </script>
<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=MyAbiliyAI/at-connect" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>