-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
417 lines (396 loc) · 26.3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arduino Based Project By ThiruXD</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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css">
<style>
/* Minimal custom CSS */
.toggle-checkbox:checked {
@apply right-0 border-blue-500;
right: 0;
border-color: #3b82f6;
}
.toggle-checkbox:checked + .toggle-label {
@apply bg-blue-500;
}
.swiper-pagination-bullet-active {
@apply bg-blue-500;
}
</style>
</head>
<body class="bg-white text-gray-800 font-sans antialiased">
<!-- Header -->
<header class="fixed w-full bg-white shadow-sm z-50 transition-all duration-300">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<a href="#" class="text-2xl font-bold text-blue-600">Arduino<span class="text-blue-400">Project</span></a>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="font-medium hover:text-blue-500 transition">Home</a>
<a href="#about" class="font-medium hover:text-blue-500 transition">About</a>
<a href="#controller" class="font-medium hover:text-blue-500 transition">Controller</a>
<a href="#components" class="font-medium hover:text-blue-500 transition">Components</a>
<a href="#team" class="font-medium hover:text-blue-500 transition">Team</a>
</nav>
<button class="md:hidden text-2xl" id="menu-toggle">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden bg-white w-full py-4 px-6 shadow-md" id="mobile-menu">
<div class="flex flex-col space-y-4">
<a href="#home" class="font-medium hover:text-blue-500 transition">Home</a>
<a href="#about" class="font-medium hover:text-blue-500 transition">About</a>
<a href="#controller" class="font-medium hover:text-blue-500 transition">Controller</a>
<a href="#components" class="font-medium hover:text-blue-500 transition">Components</a>
<a href="#team" class="font-medium hover:text-blue-500 transition">Team</a>
</div>
</div>
</header>
<!-- Hero Section (Photo Removed) -->
<section id="home" class="min-h-screen flex items-center bg-gradient-to-br from-blue-50 to-white pt-20">
<div class="container mx-auto px-6 py-20 text-center max-w-3xl">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">Arduino Based <span class="text-blue-500">Smart Remote</span> for Appliances</h1>
<p class="text-lg text-gray-600 mb-8">We build smart remote that control your electrical appliances. Our platform offers seamless integration. A part of the Final Year Project at P.S.V Polytechnic College</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="https://github.com/ThiruXD/Arduino-Based-Project" class="bg-blue-500 hover:bg-blue-600 text-white font-medium py-3 px-6 rounded-lg transition shadow-md hover:shadow-lg">Source Code</a>
<a href="#controller" class="border-2 border-blue-500 text-blue-500 hover:bg-blue-50 font-medium py-3 px-6 rounded-lg transition">Live Demo</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16 relative pb-4">
Who We Are
<span class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-blue-500 rounded-full"></span>
</h2>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="hidden lg:block lg:w-1/2">
<img src="https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Our Team" class="rounded-xl shadow-xl w-full">
</div>
<div class="lg:w-1/2">
<h3 class="text-2xl font-bold mb-4">ECE students in P.S.V Polytechnic College</h3>
<p class="text-gray-600 mb-6">Started in 2025, The forefront of IoT innovation, delivering cutting-edge solutions to enterprises and consumers alike.</p>
<p class="text-gray-600 mb-8">Our team of students work collaboratively to create systems that are not just smart but intuitive and transformative.</p>
<div class="grid grid-cols-2 gap-4 mb-8">
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-500 text-2xl mb-2">
<i class="fas fa-microchip"></i>
</div>
<h4 class="font-bold mb-1">Hardware</h4>
<p class="text-sm text-gray-600">Custom designed IoT nodes</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-500 text-2xl mb-2">
<i class="fas fa-code"></i>
</div>
<h4 class="font-bold mb-1">Software</h4>
<p class="text-sm text-gray-600">Scalable C++/HTML infrastructure</p>
</div>
</div>
<a href="#team" class="inline-block bg-blue-500 hover:bg-blue-600 text-white font-medium py-2 px-6 rounded-lg transition shadow-md">Meet Our Team</a>
</div>
</div>
</div>
</section>
<!-- Remote Controller Section -->
<section id="controller" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16 relative pb-4">
Device Controller
<span class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-blue-500 rounded-full"></span>
</h2>
<div class="max-w-md mx-auto bg-white rounded-xl shadow-lg overflow-hidden p-8">
<div class="text-center mb-8">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-sliders-h text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Remote Device Management</h3>
<p class="text-gray-600">Control your connected devices from anywhere</p>
</div>
<div class="space-y-6">
<div>
<label class="block text-gray-700 mb-2">Display Your Text</label>
<input type="text" id='lcdText' placeholder="Enter Any Text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition">
</div>
<div class="space-y-4">
<div class="flex items-center justify-between">
<span class="font-medium">Fan</span>
<div class="relative inline-block w-12 mr-2 align-middle select-none">
<input type="checkbox" onchange="fetch('/toggle?device=fan')" name="power" id="power" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/>
<label for="power" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label>
</div>
</div>
<div class="flex items-center justify-between">
<span class="font-medium">Light</span>
<div class="relative inline-block w-12 mr-2 align-middle select-none">
<input type="checkbox" onchange="fetch('/toggle?device=light')" name="auto" id="auto" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/>
<label for="auto" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label>
</div>
</div>
</div>
<button onclick="fetch('/display?text='+document.getElementById('lcdText').value)" class="w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-3 px-6 rounded-lg transition shadow-md">Display It...</button>
</div>
</div>
</div>
</section>
<!-- Components Slider -->
<section id="components" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16 relative pb-4">
Our Components
<span class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-blue-500 rounded-full"></span>
</h2>
<div class="swiper">
<div class="swiper-wrapper pb-12">
<!-- Component 1 -->
<div class="swiper-slide">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition transform hover:-translate-y-2">
<div class="h-48 bg-blue-50 overflow-hidden">
<img src="https://media.hackerearth.com/blog/wp-content/uploads/2017/02/Blog-Featured-Image.png" alt="Smart Sensor" class="w-full h-full object-cover object-center">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Arduino UNO</h3>
<p class="text-gray-600 mb-4">Arduino UNO is a microcontroller board based on the ATmega328P.</p>
<a href="https://docs.arduino.cc/hardware/uno-rev3/" class="text-blue-500 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Component 2 -->
<div class="swiper-slide">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition transform hover:-translate-y-2">
<div class="h-48 bg-blue-50 overflow-hidden">
<img src="https://www.electronicwings.com/storage/PlatformSection/TopicContent/211/description/esp8266.jpg" alt="Smart Sensor" class="w-full h-full object-cover object-center">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">ESP8266-01 Module</h3>
<p class="text-gray-600 mb-4">The ESP8266-01 is an arduino module with built-in TCP/IP networking software.</p>
<a href="https://www.instructables.com/Getting-Started-With-the-ESP8266-ESP-01/" class="text-blue-500 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Component 3 -->
<div class="swiper-slide">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition transform hover:-translate-y-2">
<div class="h-48 bg-blue-50 overflow-hidden">
<img src="https://5.imimg.com/data5/SELLER/Default/2023/6/317207953/WN/QJ/LB/41932583/12-volt-2-channel-arduino-relay.jpg" alt="Smart Sensor" class="w-full h-full object-cover object-center">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">2-CHL Relay Module</h3>
<p class="text-gray-600 mb-4">It designed to allow Arduino to control two high-powered devices.</p>
<a href="https://lastminuteengineers.com/two-channel-relay-module-arduino-tutorial/" class="text-blue-500 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Component 4 -->
<div class="swiper-slide">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition transform hover:-translate-y-2">
<div class="h-48 bg-blue-50 overflow-hidden">
<img src="https://www.sunfounder.com/cdn/shop/products/62520001-01_1200x.jpg?v=1601462322" alt="Smart Sensor" class="w-full h-full object-cover object-center">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Liquid Crystal Displays (LCD)</h3>
<p class="text-gray-600 mb-4">Customizable text with ESP8266-01 web page.</p>
<a href="https://docs.arduino.cc/learn/electronics/lcd-displays/" class="text-blue-500 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- Circuit Block Diagram -->
<section class="min-h-screen bg-white-90 text-black flex flex-col items-center justify-center px-4 pt-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16 relative pb-4">
Circuit Diagram
<span class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-blue-500 rounded-full"></span>
</h2>
<div class="w-full max-w-6xl">
<img src="https://i.ibb.co/M5DbfcZC/circuit-image.png" alt="Circuit Diagram" class="w-full h-auto" />
</div>
</section>
<!-- Team Section -->
<section id="team" class="py-20 bg-white">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-2xl sm:text-3xl md:text-4xl font-bold text-center mb-12 relative pb-4">
Our Team
<span class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-blue-500 rounded-full"></span>
</h2>
<div class="grid grid-cols-2 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Team Member 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/F4YHM67R/photo-2021-02-10-14-50-54.jpg" alt="Mr.S.Karthikeyan" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">Mr.S.Karthikeyan</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">HOD / Guide</p>
<div class="flex justify-center space-x-3">
<a href="#" class="text-gray-500 hover:text-blue-500"><i class="fas fa-envelope text-lg"></i></a>
</div>
</div>
</div>
<!-- Team Member 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/wZg95VVs/Whats-App-Image-2025-04-18-at-00-14-35-2357f774.jpg" alt="A.Thiruselvan" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">A.Thiruselvan</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">Project Manager / Backend Developer</p>
<div class="flex justify-center space-x-3">
<a href="https://github.com/thiruXD/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-github text-lg"></i></a>
<a href="https://x.com/ThiruXD" class="text-gray-500 hover:text-blue-500"><i class="fab fa-twitter text-lg"></i></a>
<a href="https://www.linkedin.com/in/thiruxd/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-linkedin text-lg"></i></a>
<a href="https://thiruxd-me.vercel.app/" class="text-gray-500 hover:text-blue-500"><i class="fa fa-chain-broken text-lg"></i></a>
</div>
</div>
</div>
<!-- Team Member 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/ch2qHBx1/Whats-App-Image-2025-02-12-at-19-59-50-5188b84e.jpg" alt="J.Rajapriyan" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">J.Rajapriyan</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">Testing / Debugging Manager</p>
<div class="flex justify-center space-x-3">
<a href="https://www.instagram.com/red_lover_kd_r_s/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-instagram text-lg"></i></a>
<a href="mailto:[email protected]" class="text-gray-500 hover:text-blue-500"><i class="fas fa-envelope text-lg"></i></a>
</div>
</div>
</div>
<!-- Team Member 4 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/dsw3YvGc/Screenshot-2025-04-18-010751.png" alt="M.Manikandan" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">M.Manikandan</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">Hardware Engineer</p>
<div class="flex justify-center space-x-3">
<a href="https://www.instagram.com/mani__solo__king__143/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-instagram text-lg"></i></a>
<a href="mailto:[email protected]" class="text-gray-500 hover:text-blue-500"><i class="fas fa-envelope text-lg"></i></a>
</div>
</div>
</div>
<!-- Team Member 5 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/d0KLX12t/Whats-App-Image-2025-03-07-at-20-36-01-e5d24850.jpg" alt="M.Dinesh" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">M.Dinesh</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">Assistant Documentation Manager</p>
<div class="flex justify-center space-x-3">
<a href="https://www.instagram.com/kd_dinesh_53/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-instagram text-lg"></i></a>
<a href="mailto:[email protected]" class="text-gray-500 hover:text-blue-500"><i class="fas fa-envelope text-lg"></i></a>
</div>
</div>
</div>
<!-- Team Member 6 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/bj3jwyp3/photo-2025-04-18-00-43-33.jpg" alt="D.Kumaresan" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">D.Kumaresan</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">Web UI/UX Designer</p>
<div class="flex justify-center space-x-3">
<a href="https://www.instagram.com/__kumarez__/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-instagram text-lg"></i></a>
<a href="mailto:[email protected]" class="text-gray-500 hover:text-blue-500"><i class="fas fa-envelope text-lg"></i></a>
</div>
</div>
</div>
<!-- Team Member 7 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-transform transform hover:-translate-y-2">
<div class="aspect-square bg-blue-50 overflow-hidden">
<img src="https://i.ibb.co/Rkr3LwVf/Whats-App-Image-2025-04-18-at-00-58-59-56efd85f.jpg" alt="M.Kishore" class="w-full h-full object-cover object-center">
</div>
<div class="p-4 sm:p-5 text-center">
<h3 class="text-base sm:text-lg font-bold leading-tight mb-1 break-words">M.Kishore</h3>
<p class="text-blue-500 text-sm sm:text-base font-medium mb-3 break-words">Report/Documentation Manager</p>
<div class="flex justify-center space-x-3">
<a href="https://www.instagram.com/tom_jerry_kr/" class="text-gray-500 hover:text-blue-500"><i class="fab fa-instagram text-lg"></i></a>
<a href="mailto:[email protected]" class="text-gray-500 hover:text-blue-500"><i class="fas fa-envelope text-lg"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<a href="#" class="text-2xl font-bold text-white">Arduino<span class="text-blue-400">Project</span></a>
<p class="text-gray-400 mt-2">Innovating the connected future</p>
</div>
<div class="flex space-x-6">
<a href="https://x.com/ThiruXD" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/thiruxd/" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/ThiruXD/Arduino-Based-Project" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2025 ThiruXD. All rights reserved.</p>
<div class="flex space-x-6">
<a href="https://github.com/ThiruXD/Arduino-Based-Project" class="text-gray-400 hover:text-white text-sm transition">Source Code</a>
<a href="https://en.wikipedia.org/wiki/International_piracy_law" class="text-gray-400 hover:text-white text-sm transition">Privacy Policy</a>
<a href="https://x.com/ThiruXD" class="text-gray-400 hover:text-white text-sm transition">Contact Us</a>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script>function fetch(url){var x=new XMLHttpRequest();x.open('GET',url,true);x.send();}</script>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Header scroll effect
window.addEventListener('scroll', function() {
const header = document.querySelector('header');
if (window.scrollY > 50) {
header.classList.add('shadow-lg');
header.classList.add('py-2');
} else {
header.classList.remove('shadow-lg');
header.classList.remove('py-2');
}
});
// Initialize Swiper
new Swiper('.swiper', {
slidesPerView: 1,
spaceBetween: 20,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
breakpoints: {
640: {
slidesPerView: 2,
},
1024: {
slidesPerView: 3,
}
}
});
</script>
</body>
</html>