-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
506 lines (486 loc) · 31.7 KB
/
tutorial.html
File metadata and controls
506 lines (486 loc) · 31.7 KB
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forge Kernel - Tutorials</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-core.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/docs.css">
</head>
<body class="bg-gray-50 text-gray-900">
<!-- Navigation -->
<nav class="bg-white shadow-sm border-b">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<h1 class="text-xl font-bold text-gray-900">
Forge Kernel
</h1>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="index.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Home
</a>
<a href="getting-started.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Getting Started
</a>
<a href="core-concepts.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Core Concepts
</a>
<a href="modules.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Capabilities
</a>
<a href="api-reference.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
API Reference
</a>
<a href="tutorial.html"
class="text-blue-600 inline-flex items-center px-1 pt-1 text-sm font-medium border-b-2 border-blue-600">
Tutorials
</a>
</div>
</div>
<!-- Mobile menu button -->
<div class="flex items-center sm:hidden">
<button id="mobile-menu-button" class="text-gray-700 hover:text-blue-600 p-2">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="sm:hidden hidden bg-white border-t border-gray-200">
<div class="px-2 pt-2 pb-3 space-y-1">
<a href="index.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Home</a>
<a href="getting-started.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Getting Started</a>
<a href="core-concepts.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Core Concepts</a>
<a href="modules.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Capabilities</a>
<a href="api-reference.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">API Reference</a>
<a href="tutorial.html" class="block px-3 py-2 text-blue-600 font-medium">Tutorials</a>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="bg-white rounded-lg shadow-sm p-8">
<h1 class="text-4xl font-bold text-gray-900 mb-4">Tutorials</h1>
<p class="text-xl text-gray-600 mb-8">
Step-by-step guides to help you learn Forge Kernel by building real applications and features.
</p>
<!-- Introduction -->
<section class="mb-12">
<p class="text-gray-600 mb-6">
These tutorials demonstrate how to combine multiple Forge Kernel features and modules to build complete applications. Each tutorial focuses on different aspects of development, from getting started with basic features to advanced module development.
</p>
</section>
<!-- Getting Started Category -->
<section class="mb-12">
<h2 class="text-2xl font-bold text-gray-900 mb-6 flex items-center">
<span class="bg-green-100 text-green-800 text-sm font-semibold px-3 py-1 rounded-full mr-3">Getting Started</span>
Beginner Tutorials
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Building a Todo App -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Building a Todo App</h3>
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2 py-1 rounded">Beginner</span>
</div>
<p class="text-gray-600 mb-4">
Build a complete todo application demonstrating authentication, CRUD operations, interactive components, events, and testing.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Database migrations and models</li>
<li>Authentication with ForgeAuth</li>
<li>Controllers and routes</li>
<li>Views and layouts</li>
<li>ForgeWire components</li>
<li>Events and background processing</li>
<li>Testing with ForgeTesting</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 1-2 hours</span>
<span>ForgeAuth, ForgeDatabaseSql, ForgeSqlOrm, ForgeWire, ForgeEvents, ForgeTesting</span>
</div>
<a href="tutorial-building-todo-app.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Working with Forms -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Working with Forms</h3>
<span class="bg-green-100 text-green-800 text-xs font-semibold px-2 py-1 rounded">Beginner</span>
</div>
<p class="text-gray-600 mb-4">
Master form handling in Forge Kernel, including validation, CSRF protection, file uploads, and form components.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Form creation and CSRF protection</li>
<li>Form validation</li>
<li>File uploads</li>
<li>Form components</li>
<li>Error handling and display</li>
<li>Form helpers</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 30 minutes</span>
<span>Core Kernel</span>
</div>
<a href="tutorial-forms.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
</div>
</section>
<!-- Advanced Features Category -->
<section class="mb-12">
<h2 class="text-2xl font-bold text-gray-900 mb-6 flex items-center">
<span class="bg-blue-100 text-blue-800 text-sm font-semibold px-3 py-1 rounded-full mr-3">Advanced Features</span>
Intermediate & Advanced Tutorials
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Working with Queue Jobs -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Working with Queue Jobs</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">Intermediate</span>
</div>
<p class="text-gray-600 mb-4">
Learn how to use ForgeEvents to create and process background jobs, handle retries, and manage multiple queues.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Creating events and event listeners</li>
<li>Queue configuration</li>
<li>Running queue workers</li>
<li>Handling failures and retries</li>
<li>Multiple queues and priorities</li>
<li>Delayed job processing</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 45 minutes</span>
<span>ForgeEvents</span>
</div>
<a href="tutorial-queue-jobs.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Creating a CMS for Blog Content -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Creating a CMS for Blog Content</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">Intermediate</span>
</div>
<p class="text-gray-600 mb-4">
Build a content management system with an admin panel for publishing blog posts, managing categories, and handling content.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Admin panel creation</li>
<li>Content management</li>
<li>Rich text editing</li>
<li>Category/tag management</li>
<li>Content publishing workflow</li>
<li>Access control and permissions</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 2-3 hours</span>
<span>ForgeAuth, ForgeSqlOrm, ForgeWire</span>
</div>
<a href="tutorial-cms-blog.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Creating a Multi-Tenant Application -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Creating a Multi-Tenant Application</h3>
<span class="bg-red-100 text-red-800 text-xs font-semibold px-2 py-1 rounded">Advanced</span>
</div>
<p class="text-gray-600 mb-4">
Build a complete multi-tenant application using ForgeMultiTenant, demonstrating tenant isolation, data scoping, and multi-tenant architecture patterns.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Multi-tenancy concepts and strategies</li>
<li>Tenant identification and scoping</li>
<li>Database isolation strategies</li>
<li>Route and model scoping</li>
<li>Tenant-specific configurations</li>
<li>Multi-tenant migrations and seeding</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 2-3 hours</span>
<span>ForgeMultiTenant</span>
</div>
<a href="tutorial-multi-tenant-app.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Building REST APIs -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Building REST APIs</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">Intermediate</span>
</div>
<p class="text-gray-600 mb-4">
Learn how to build robust REST APIs with Forge Kernel, including authentication, validation, error handling, and API documentation.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>REST API design principles</li>
<li>API authentication (JWT, tokens)</li>
<li>Request validation and sanitization</li>
<li>Error handling and status codes</li>
<li>API versioning</li>
<li>Response formatting</li>
<li>API testing</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 1-2 hours</span>
<span>Core Kernel, ForgeAuth</span>
</div>
<a href="tutorial-rest-apis.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Building Admin Panels & Dashboards -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Building Admin Panels & Dashboards</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">Intermediate</span>
</div>
<p class="text-gray-600 mb-4">
Create a comprehensive admin panel with dashboards, data tables, charts, and management interfaces using Forge Kernel modules.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Admin panel architecture</li>
<li>Dashboard design and data visualization</li>
<li>Data tables with filtering and pagination</li>
<li>Role-based access control</li>
<li>Admin-specific routes and middleware</li>
<li>Bulk operations</li>
<li>Admin UI components</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 2-3 hours</span>
<span>ForgeAuth, ForgeSqlOrm, ForgeWire</span>
</div>
<a href="tutorial-admin-panels.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Production Deployment & Optimization -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Production Deployment & Optimization</h3>
<span class="bg-red-100 text-red-800 text-xs font-semibold px-2 py-1 rounded">Advanced</span>
</div>
<p class="text-gray-600 mb-4">
Deploy your Forge Kernel application to production, including server setup, optimization, caching, monitoring, and best practices.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Production server configuration</li>
<li>Environment setup and secrets management</li>
<li>Performance optimization</li>
<li>Caching strategies</li>
<li>Database optimization</li>
<li>Monitoring and logging</li>
<li>Security hardening</li>
<li>CI/CD pipelines</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 1-2 hours</span>
<span>Core Kernel, DevOps</span>
</div>
<a href="tutorial-production-deployment.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
</div>
</section>
<!-- Module Development Category -->
<section class="mb-12">
<h2 class="text-2xl font-bold text-gray-900 mb-6 flex items-center">
<span class="bg-purple-100 text-purple-800 text-sm font-semibold px-3 py-1 rounded-full mr-3">Module Development</span>
Building & Publishing Modules
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Module Development -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Module Development</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">Intermediate</span>
</div>
<p class="text-gray-600 mb-4">
Learn how to create your own Forge Kernel modules from scratch, including module structure, attributes, and integration.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Module structure and organization</li>
<li>Module attributes and metadata</li>
<li>Service registration</li>
<li>CLI commands in modules</li>
<li>Module lifecycle hooks</li>
<li>Module testing</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 1-2 hours</span>
<span>Core Kernel</span>
</div>
<a href="tutorial-module-development.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Module Publishing -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Module Publishing</h3>
<span class="bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">Intermediate</span>
</div>
<p class="text-gray-600 mb-4">
Publish your custom modules to your own registry, set up a private registry, and manage module versions.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Setting up a module registry</li>
<li>Module versioning</li>
<li>Publishing modules</li>
<li>Registry configuration</li>
<li>Module distribution</li>
<li>Private registries</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 45 minutes</span>
<span>ForgePackageManager</span>
</div>
<a href="tutorial-module-publishing.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Creating Applications as Modules -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Creating Applications as Modules</h3>
<span class="bg-red-100 text-red-800 text-xs font-semibold px-2 py-1 rounded">Advanced</span>
</div>
<p class="text-gray-600 mb-4">
Build a complete application encapsulated as a module instead of using the app/ directory, demonstrating modular architecture.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Module-based application architecture</li>
<li>Encapsulating applications in modules</li>
<li>Module dependencies</li>
<li>Module isolation</li>
<li>Sharing modules between projects</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 2 hours</span>
<span>Core Kernel, Module Architecture</span>
</div>
<a href="tutorial-module-application.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
<!-- Modular Todo App -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-lg transition-shadow">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-bold text-gray-900">Modular Todo App</h3>
<span class="bg-red-100 text-red-800 text-xs font-semibold px-2 py-1 rounded">Advanced</span>
</div>
<p class="text-gray-600 mb-4">
Rebuild the todo application with features split into separate modules, demonstrating modular design patterns.
</p>
<div class="mb-4">
<p class="text-sm font-semibold text-gray-700 mb-2">What you'll learn:</p>
<ul class="text-sm text-gray-600 space-y-1 list-disc list-inside">
<li>Modular application design</li>
<li>Feature isolation in modules</li>
<li>Module communication</li>
<li>Module dependencies</li>
<li>Building composable applications</li>
</ul>
</div>
<div class="flex items-center justify-between mt-4 pt-4 border-t border-gray-200">
<div class="flex items-center space-x-4 text-sm text-gray-500">
<span><i class="far fa-clock mr-1"></i> 2-3 hours</span>
<span>Multiple Modules</span>
</div>
<a href="tutorial-modular-todo.html" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition-colors">
Start Tutorial
</a>
</div>
</div>
</div>
</section>
</div>
</div>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button')?.addEventListener('click', function () {
const menu = document.getElementById('mobile-menu');
menu?.classList.toggle('hidden');
});
</script>
</body>
</html>