webfluent 0.4.0-alpha

The Web-First Language — compiles to HTML, CSS, JavaScript, and PDF. 50+ built-in components, reactivity, routing, i18n, SSG, and template engine.
Documentation
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Components Reference</title>
    <meta name="description" content="A programming language that compiles to HTML, CSS, and JavaScript. Build SPAs and static sites with built-in components, reactivity, routing, i18n, and animations.">
    <link rel="stylesheet" href="../styles.css">
</head>
<body>
    <div id="app">
        <!--wf-component-->
        <div class="wf-row">
            <!--wf-component-->
            <div class="wf-container wf-animate-fadeIn">
                <div class="wf-spacer"></div>
                <h1 class="wf-heading wf-heading--h1">Components Reference</h1><p class="wf-text wf-text--muted">50+ built-in components. Below are live interactive examples you can play with.</p><div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Buttons</h2><p class="wf-text">Buttons support size, color, and shape modifiers.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-row">
                            <button class="wf-btn">Default</button><button class="wf-btn wf-btn--primary">Primary</button><button class="wf-btn wf-btn--success">Success</button><button class="wf-btn wf-btn--danger">Danger</button><button class="wf-btn wf-btn--warning">Warning</button><button class="wf-btn wf-btn--info">Info</button></div><div class="wf-spacer"></div>
                        <div class="wf-row">
                            <button class="wf-btn wf-btn--primary wf-btn--small">Small</button><button class="wf-btn wf-btn--primary">Medium</button><button class="wf-btn wf-btn--primary wf-btn--large">Large</button><button class="wf-btn wf-btn--primary wf-btn--rounded">Rounded</button><button class="wf-btn wf-btn--primary wf-btn--full">Full Width</button></div></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Button(&quot;Primary&quot;, primary)
Button(&quot;Large&quot;, primary, large)
Button(&quot;Rounded&quot;, success, rounded)
Button(&quot;Full Width&quot;, danger, full)</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Cards</h2><p class="wf-text">Cards are surfaces for grouping content. They support Header, Body, and Footer sub-components.</p><div class="wf-spacer"></div>
                <div class="wf-row">
                    <div class="wf-col">
                        <div class="wf-card">
                            <div class="wf-card__header">
                                <p class="wf-text wf-text--bold">Default Card</p></div><div class="wf-card__body">
                                <p class="wf-text wf-text--muted">Basic card with header and body.</p></div><div class="wf-card__footer">
                                <button class="wf-btn wf-btn--primary wf-btn--small">
                                    Action
                                </button></div></div></div><div class="wf-col">
                        <div class="wf-card wf-card--elevated">
                            <div class="wf-card__header">
                                <p class="wf-text wf-text--bold">Elevated</p></div><div class="wf-card__body">
                                <p class="wf-text wf-text--muted">Card with shadow elevation.</p></div></div></div><div class="wf-col">
                        <div class="wf-card wf-card--outlined">
                            <div class="wf-card__header">
                                <p class="wf-text wf-text--bold">Outlined</p></div><div class="wf-card__body">
                                <p class="wf-text wf-text--muted">Card with border only.</p></div></div></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Form Controls</h2><p class="wf-text">All form inputs support two-way binding with the bind: attribute.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-stack">
                            <input class="wf-input" placeholder="Type here..." type="text">
                            <!--wf-if-->
                            <hr class="wf-divider">
                            <select class="wf-select">
                                Select
                                <option>opt1</option><option>opt2</option><option>opt3</option></select><p class="wf-text wf-text--muted wf-text--small"></p><hr class="wf-divider">
                            <label class="wf-checkbox">I agree to the terms</label><p class="wf-text wf-text--muted wf-text--small"></p><hr class="wf-divider">
                            <div class="wf-row">
                                <label class="wf-radio" value="a">Option A</label><label class="wf-radio" value="b">Option B</label><label class="wf-radio" value="c">Option C</label></div><p class="wf-text wf-text--muted wf-text--small"></p><hr class="wf-divider">
                            <label class="wf-switch">Dark Mode</label><p class="wf-text wf-text--muted wf-text--small"></p><hr class="wf-divider">
                            <input class="wf-slider" min="0" max="100" step="1">
                            <p class="wf-text wf-text--muted wf-text--small"></p><hr class="wf-divider">
                            <input class="wf-datepicker">
                            <p class="wf-text wf-text--muted wf-text--small"></p><hr class="wf-divider">
                            <input class="wf-file-upload" accept="image/*">
                            <input class="wf-file-upload" accept=".pdf,.doc">
                        </div></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Feedback</h2><p class="wf-text">Alerts, modals, progress bars, and loading indicators.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-stack">
                            <div class="wf-alert wf-alert--success">This is a success alert.</div><div class="wf-alert wf-alert--warning">This is a warning alert.</div><div class="wf-alert wf-alert--danger">This is a danger alert.</div><div class="wf-alert wf-alert--info">This is an info alert.</div></div><div class="wf-spacer"></div>
                        <div class="wf-row">
                            <div class="wf-spinner"></div>
                            <div class="wf-spinner wf-spinner--large wf-spinner--primary"></div>
                            <progress class="wf-progress" max="100"></progress></div><div class="wf-spacer"></div>
                        <button class="wf-btn wf-btn--primary">
                            Open Modal
                        </button></div></div><div class="wf-modal" title="Example Modal">
                    <p class="wf-text">This is a real modal dialog. It was triggered by clicking the button.</p><div class="wf-spacer"></div>
                    <p class="wf-text wf-text--muted">The modal is controlled by a state variable.</p><div class="wf-modal__footer">
                        <button class="wf-btn">
                            Close
                        </button><button class="wf-btn wf-btn--primary">
                            Confirm
                        </button></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Data Display</h2><p class="wf-text">Tables, badges, avatars, tags, and tooltips.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <table class="wf-table">
                            <thead>
                                <td>Name</td><td>Role</td><td>Status</td></thead><tr>
                                <td>Monzer Omer</td><td>Creator</td><td>Active</td></tr><tr>
                                <td>Sara Ali</td><td>Designer</td><td>Active</td></tr><tr>
                                <td>Omar Hassan</td><td>Developer</td><td>Away</td></tr></table><div class="wf-spacer"></div>
                        <div class="wf-row">
                            <div class="wf-avatar wf-avatar--primary"></div><div class="wf-avatar wf-avatar--success"></div><div class="wf-avatar wf-avatar--info"></div><span class="wf-badge wf-badge--primary">Admin</span><span class="wf-badge wf-badge--success">Online</span><span class="wf-tag">WebFluent</span><span class="wf-tag">Rust</span><span class="wf-tag">Open Source</span></div></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Layout</h2><p class="wf-text">Container, Row, Column, Grid, Stack, Spacer, Divider.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <p class="wf-text wf-text--bold">Grid with 3 columns:</p><div class="wf-spacer"></div>
                        <div class="wf-grid" style="grid-template-columns: repeat(3, 1fr)">
                            <div class="wf-card wf-card--outlined">
                                <div class="wf-card__body">
                                    <p class="wf-text wf-text--center">Column 1</p></div></div><div class="wf-card wf-card--outlined">
                                <div class="wf-card__body">
                                    <p class="wf-text wf-text--center">Column 2</p></div></div><div class="wf-card wf-card--outlined">
                                <div class="wf-card__body">
                                    <p class="wf-text wf-text--center">Column 3</p></div></div></div><div class="wf-spacer"></div>
                        <p class="wf-text wf-text--bold">Row with Columns (6/6 split):</p><div class="wf-spacer"></div>
                        <div class="wf-row">
                            <div class="wf-col">
                                <div class="wf-card wf-card--outlined">
                                    <div class="wf-card__body">
                                        <p class="wf-text wf-text--center">Left Half</p></div></div></div><div class="wf-col">
                                <div class="wf-card wf-card--outlined">
                                    <div class="wf-card__body">
                                        <p class="wf-text wf-text--center">Right Half</p></div></div></div></div><div class="wf-spacer"></div>
                        <p class="wf-text wf-text--bold">Stack (vertical):</p><div class="wf-spacer"></div>
                        <div class="wf-stack">
                            <div class="wf-card wf-card--outlined">
                                <div class="wf-card__body">
                                    <p class="wf-text">Item 1</p></div></div><div class="wf-card wf-card--outlined">
                                <div class="wf-card__body">
                                    <p class="wf-text">Item 2</p></div></div><div class="wf-card wf-card--outlined">
                                <div class="wf-card__body">
                                    <p class="wf-text">Item 3</p></div></div></div></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Icons &amp; Icon Buttons</h2><p class="wf-text">30 built-in SVG icons. Use Icon for display, IconButton for clickable actions.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <p class="wf-text wf-text--bold">Available Icons:</p><div class="wf-spacer"></div>
                        <div class="wf-row">
                            <div class="wf-stack">
                                <div class="wf-row">
                                    <i class="wf-icon">home</i><p class="wf-text wf-text--muted wf-text--small">home</p></div><div class="wf-row">
                                    <i class="wf-icon">search</i><p class="wf-text wf-text--muted wf-text--small">search</p></div><div class="wf-row">
                                    <i class="wf-icon">user</i><p class="wf-text wf-text--muted wf-text--small">user</p></div><div class="wf-row">
                                    <i class="wf-icon">settings</i><p class="wf-text wf-text--muted wf-text--small">settings</p></div><div class="wf-row">
                                    <i class="wf-icon">mail</i><p class="wf-text wf-text--muted wf-text--small">mail</p></div><div class="wf-row">
                                    <i class="wf-icon">bell</i><p class="wf-text wf-text--muted wf-text--small">bell</p></div></div><div class="wf-stack">
                                <div class="wf-row">
                                    <i class="wf-icon">edit</i><p class="wf-text wf-text--muted wf-text--small">edit</p></div><div class="wf-row">
                                    <i class="wf-icon">trash</i><p class="wf-text wf-text--muted wf-text--small">trash</p></div><div class="wf-row">
                                    <i class="wf-icon">plus</i><p class="wf-text wf-text--muted wf-text--small">plus</p></div><div class="wf-row">
                                    <i class="wf-icon">check</i><p class="wf-text wf-text--muted wf-text--small">check</p></div><div class="wf-row">
                                    <i class="wf-icon">close</i><p class="wf-text wf-text--muted wf-text--small">close</p></div><div class="wf-row">
                                    <i class="wf-icon">copy</i><p class="wf-text wf-text--muted wf-text--small">copy</p></div></div><div class="wf-stack">
                                <div class="wf-row">
                                    <i class="wf-icon">star</i><p class="wf-text wf-text--muted wf-text--small">star</p></div><div class="wf-row">
                                    <i class="wf-icon">heart</i><p class="wf-text wf-text--muted wf-text--small">heart</p></div><div class="wf-row">
                                    <i class="wf-icon">eye</i><p class="wf-text wf-text--muted wf-text--small">eye</p></div><div class="wf-row">
                                    <i class="wf-icon">download</i><p class="wf-text wf-text--muted wf-text--small">download</p></div><div class="wf-row">
                                    <i class="wf-icon">upload</i><p class="wf-text wf-text--muted wf-text--small">upload</p></div><div class="wf-row">
                                    <i class="wf-icon">link</i><p class="wf-text wf-text--muted wf-text--small">link</p></div></div><div class="wf-stack">
                                <div class="wf-row">
                                    <i class="wf-icon">calendar</i><p class="wf-text wf-text--muted wf-text--small">calendar</p></div><div class="wf-row">
                                    <i class="wf-icon">filter</i><p class="wf-text wf-text--muted wf-text--small">filter</p></div><div class="wf-row">
                                    <i class="wf-icon">info</i><p class="wf-text wf-text--muted wf-text--small">info</p></div><div class="wf-row">
                                    <i class="wf-icon">warning</i><p class="wf-text wf-text--muted wf-text--small">warning</p></div><div class="wf-row">
                                    <i class="wf-icon">logout</i><p class="wf-text wf-text--muted wf-text--small">logout</p></div><div class="wf-row">
                                    <i class="wf-icon">menu</i><p class="wf-text wf-text--muted wf-text--small">menu</p></div></div></div><div class="wf-spacer"></div>
                        <p class="wf-text wf-text--bold">Icon Buttons:</p><div class="wf-spacer"></div>
                        <div class="wf-row">
                            <button class="wf-icon-btn">Edit</button><button class="wf-icon-btn wf-icon-btn--danger">Delete</button><button class="wf-icon-btn wf-icon-btn--primary">Add</button><button class="wf-icon-btn wf-icon-btn--large">Search</button><button class="wf-icon-btn wf-icon-btn--small">Close</button></div></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Icon(&quot;home&quot;)
Icon(&quot;search&quot;, large, primary)
IconButton(icon: &quot;edit&quot;, label: &quot;Edit&quot;)
IconButton(icon: &quot;trash&quot;, label: &quot;Delete&quot;, danger)</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Tooltips</h2><p class="wf-text">Wrap any element in a Tooltip to show text on hover.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-row">
                            <div class="wf-tooltip">
                                <button class="wf-btn wf-btn--primary">Hover me</button></div><div class="wf-tooltip">
                                <button class="wf-btn wf-btn--danger">Delete</button></div><div class="wf-tooltip">
                                <div class="wf-avatar wf-avatar--primary"></div></div></div></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Tooltip(text: &quot;Help text&quot;) {
    Button(&quot;Hover me&quot;, primary)
}</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Sidebar</h2><p class="wf-text">Sidebar navigation with header, items, and dividers. Items support icons and links.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-row">
                            <aside class="wf-sidebar">
                                <div class="wf-sidebar__header">
                                    <p class="wf-text wf-text--heading">My App</p></div><li class="wf-sidebar__item">
                                    <p class="wf-text">Dashboard</p></li><li class="wf-sidebar__item">
                                    <p class="wf-text">Settings</p></li><li class="wf-sidebar__item">
                                    <p class="wf-text">Profile</p></li><div class="wf-sidebar__divider">
                                </div><li class="wf-sidebar__item">
                                    <p class="wf-text">Logout</p></li></aside><div class="wf-stack">
                                <p class="wf-text wf-text--muted">The sidebar renders with proper structure:</p><p class="wf-text wf-text--small">Sidebar.Header for the title</p><p class="wf-text wf-text--small">Sidebar.Item with to: and icon: props</p><p class="wf-text wf-text--small">Sidebar.Divider for separation</p></div></div></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Sidebar {
    Sidebar.Header { Text(&quot;My App&quot;, heading) }
    Sidebar.Item(to: &quot;/&quot;, icon: &quot;home&quot;) { Text(&quot;Dashboard&quot;) }
    Sidebar.Item(icon: &quot;settings&quot;) { Text(&quot;Settings&quot;) }
    Sidebar.Divider()
    Sidebar.Item(icon: &quot;logout&quot;) { Text(&quot;Logout&quot;) }
}</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Breadcrumb</h2><p class="wf-text">Show navigation hierarchy with automatic separators.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <nav class="wf-breadcrumb">
                            <li class="wf-breadcrumb__item">
                                <p class="wf-text">Home</p></li><li class="wf-breadcrumb__item">
                                <p class="wf-text">Components</p></li><li class="wf-breadcrumb__item">
                                <p class="wf-text">Breadcrumb</p></li></nav></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Breadcrumb {
    Breadcrumb.Item(to: &quot;/&quot;) { Text(&quot;Home&quot;) }
    Breadcrumb.Item(to: &quot;/docs&quot;) { Text(&quot;Docs&quot;) }
    Breadcrumb.Item { Text(&quot;Current Page&quot;) }
}</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Skeleton Loading</h2><p class="wf-text">Placeholder shapes that shimmer while content loads.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-stack">
                            <div class="wf-skeleton"></div><div class="wf-skeleton"></div><div class="wf-skeleton"></div><div class="wf-spacer"></div>
                            <div class="wf-row">
                                <div class="wf-skeleton"></div><div class="wf-stack">
                                    <div class="wf-skeleton"></div><div class="wf-skeleton"></div></div></div></div></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Skeleton(height: &quot;16px&quot;, width: &quot;80%&quot;)
Skeleton(circle, size: &quot;48px&quot;)</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Dropdown &amp; Menu</h2><p class="wf-text">Click-to-toggle dropdown menus with auto-close on outside click.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-row">
                            <div class="wf-dropdown">
                                Actions
                                <li class="wf-dropdown__item">
                                    <p class="wf-text">Edit</p></li><li class="wf-dropdown__item">
                                    <p class="wf-text">Duplicate</p></li><div class="wf-dropdown__divider">
                                </div><li class="wf-dropdown__item">
                                    <p class="wf-text">Delete</p></li></div><div class="wf-menu">
                                <li class="wf-menu__item">
                                    <p class="wf-text">Profile</p></li><li class="wf-menu__item">
                                    <p class="wf-text">Settings</p></li><div class="wf-menu__divider">
                                </div><li class="wf-menu__item">
                                    <p class="wf-text">Logout</p></li></div></div></div></div><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <code class="wf-code">Dropdown(label: &quot;Actions&quot;) {
    Dropdown.Item { Text(&quot;Edit&quot;) }
    Dropdown.Divider()
    Dropdown.Item { Text(&quot;Delete&quot;) }
}</code></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Navigation</h2><p class="wf-text">Tabs let you switch between content panels.</p><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <div class="wf-tabs">
                            <div class="wf-tab-page">
                                Profile
                                <div class="wf-spacer"></div>
                                <div class="wf-row">
                                    <div class="wf-avatar wf-avatar--primary wf-avatar--large"></div><div class="wf-stack">
                                        <p class="wf-text wf-text--bold">Monzer Omer</p><p class="wf-text wf-text--muted">Creator of WebFluent</p></div></div></div><div class="wf-tab-page">
                                Settings
                                <div class="wf-spacer"></div>
                                <label class="wf-switch">Enable notifications</label><div class="wf-spacer"></div>
                                <input class="wf-slider" min="0" max="100">
                            </div><div class="wf-tab-page">
                                About
                                <div class="wf-spacer"></div>
                                <p class="wf-text">WebFluent is a web-first programming language.</p><p class="wf-text wf-text--muted">It compiles to HTML, CSS, and JavaScript.</p></div></div></div></div><div class="wf-spacer"></div>
                <hr class="wf-divider">
                <div class="wf-spacer"></div>
                <h2 class="wf-heading wf-heading--h2">Typography</h2><div class="wf-spacer"></div>
                <div class="wf-card wf-card--outlined">
                    <div class="wf-card__body">
                        <h2 class="wf-heading wf-heading--h2">Heading h2</h2><h2 class="wf-heading wf-heading--h2">Heading h2</h2><h3 class="wf-heading wf-heading--h3">Heading h3</h3><div class="wf-spacer"></div>
                        <p class="wf-text">Normal text paragraph.</p><p class="wf-text wf-text--bold">Bold text.</p><p class="wf-text wf-text--muted">Muted text.</p><p class="wf-text wf-text--primary">Primary colored.</p><p class="wf-text wf-text--danger">Danger colored.</p><p class="wf-text wf-text--small">Small text.</p><p class="wf-text">Uppercase.</p><p class="wf-text wf-text--center">Centered text.</p><div class="wf-spacer"></div>
                        <blockquote class="wf-blockquote">The best way to predict the future is to create it.</blockquote><div class="wf-spacer"></div>
                        <code class="wf-code">const greeting = &quot;Hello, WebFluent!&quot;;</code></div></div><div class="wf-spacer"></div>
                <div class="wf-row">
                    <button class="wf-btn wf-btn--primary">
                        Styling Guide
                    </button><button class="wf-btn">
                        Animation System
                    </button></div><div class="wf-spacer"></div>
            </div></div>
        <!--wf-component-->
    </div>
    <script src="../app.js"></script>
</body>
</html>