tutuca 0.9.39 → 0.9.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/dist/tutuca-cli.js +92 -39
  2. package/dist/tutuca-dev.js +18 -0
  3. package/dist/tutuca-dev.min.js +1 -1
  4. package/package.json +6 -7
  5. package/skill/immutable-js/SKILL.md +79 -0
  6. package/skill/immutable-js/references/collection.md +346 -0
  7. package/skill/immutable-js/references/conversions.md +99 -0
  8. package/skill/immutable-js/references/deep-updates.md +172 -0
  9. package/skill/immutable-js/references/equality.md +95 -0
  10. package/skill/immutable-js/references/list.md +266 -0
  11. package/skill/immutable-js/references/map.md +300 -0
  12. package/skill/immutable-js/references/predicates.md +93 -0
  13. package/skill/immutable-js/references/range-repeat.md +55 -0
  14. package/skill/immutable-js/references/record.md +196 -0
  15. package/skill/immutable-js/references/seq.md +248 -0
  16. package/skill/immutable-js/references/set.md +270 -0
  17. package/skill/immutable-js/references/shallow-functional.md +99 -0
  18. package/skill/immutable-js/references/stack.md +210 -0
  19. package/skill/margaui/SKILL.md +101 -0
  20. package/skill/margaui/components/accordion.md +127 -0
  21. package/skill/margaui/components/alert.md +174 -0
  22. package/skill/margaui/components/avatar.md +220 -0
  23. package/skill/margaui/components/badge.md +193 -0
  24. package/skill/margaui/components/breadcrumbs.md +103 -0
  25. package/skill/margaui/components/button.md +322 -0
  26. package/skill/margaui/components/calendar.md +67 -0
  27. package/skill/margaui/components/card.md +373 -0
  28. package/skill/margaui/components/carousel.md +387 -0
  29. package/skill/margaui/components/chat.md +171 -0
  30. package/skill/margaui/components/checkbox.md +101 -0
  31. package/skill/margaui/components/collapse.md +172 -0
  32. package/skill/margaui/components/countdown.md +165 -0
  33. package/skill/margaui/components/diff.md +53 -0
  34. package/skill/margaui/components/divider.md +107 -0
  35. package/skill/margaui/components/dock.md +173 -0
  36. package/skill/margaui/components/drawer.md +184 -0
  37. package/skill/margaui/components/dropdown.md +388 -0
  38. package/skill/margaui/components/fab.md +346 -0
  39. package/skill/margaui/components/fieldset.md +88 -0
  40. package/skill/margaui/components/file-input.md +84 -0
  41. package/skill/margaui/components/filter.md +52 -0
  42. package/skill/margaui/components/footer.md +583 -0
  43. package/skill/margaui/components/hero.md +135 -0
  44. package/skill/margaui/components/hover-3d.md +129 -0
  45. package/skill/margaui/components/hover-gallery.md +49 -0
  46. package/skill/margaui/components/indicator.md +265 -0
  47. package/skill/margaui/components/input.md +389 -0
  48. package/skill/margaui/components/join.md +100 -0
  49. package/skill/margaui/components/kbd.md +127 -0
  50. package/skill/margaui/components/label.md +102 -0
  51. package/skill/margaui/components/link.md +96 -0
  52. package/skill/margaui/components/list.md +182 -0
  53. package/skill/margaui/components/loading.md +105 -0
  54. package/skill/margaui/components/mask.md +168 -0
  55. package/skill/margaui/components/menu.md +856 -0
  56. package/skill/margaui/components/mockup-browser.md +39 -0
  57. package/skill/margaui/components/mockup-code.md +81 -0
  58. package/skill/margaui/components/mockup-phone.md +39 -0
  59. package/skill/margaui/components/mockup-window.md +33 -0
  60. package/skill/margaui/components/modal.md +178 -0
  61. package/skill/margaui/components/navbar.md +282 -0
  62. package/skill/margaui/components/pagination.md +122 -0
  63. package/skill/margaui/components/progress.md +135 -0
  64. package/skill/margaui/components/radial-progress.md +67 -0
  65. package/skill/margaui/components/radio.md +133 -0
  66. package/skill/margaui/components/range.md +134 -0
  67. package/skill/margaui/components/rating.md +170 -0
  68. package/skill/margaui/components/select.md +225 -0
  69. package/skill/margaui/components/skeleton.md +64 -0
  70. package/skill/margaui/components/stack.md +142 -0
  71. package/skill/margaui/components/stat.md +254 -0
  72. package/skill/margaui/components/status.md +73 -0
  73. package/skill/margaui/components/steps.md +138 -0
  74. package/skill/margaui/components/swap.md +152 -0
  75. package/skill/margaui/components/tab.md +248 -0
  76. package/skill/margaui/components/table.md +1018 -0
  77. package/skill/margaui/components/text-rotate.md +91 -0
  78. package/skill/margaui/components/textarea.md +85 -0
  79. package/skill/margaui/components/theme-controller.md +266 -0
  80. package/skill/margaui/components/timeline.md +1356 -0
  81. package/skill/margaui/components/toast.md +165 -0
  82. package/skill/margaui/components/toggle.md +135 -0
  83. package/skill/margaui/components/tooltip.md +181 -0
  84. package/skill/margaui/components/validator.md +163 -0
  85. package/skill/{advanced.md → tutuca/advanced.md} +5 -0
  86. package/skill/{cli.md → tutuca/cli.md} +17 -0
  87. package/skill/{core.md → tutuca/core.md} +5 -0
  88. /package/skill/{SKILL.md → tutuca/SKILL.md} +0 -0
@@ -0,0 +1,583 @@
1
+ # footer
2
+
3
+ _page footer with column groupings_
4
+
5
+ ## What it does
6
+
7
+ Page footer layout — columns of links, optional logo block, optional form, optional copyright row.
8
+
9
+ ## When to use
10
+
11
+ - Standard site footers.
12
+
13
+ ## Examples
14
+
15
+ ### Centered footer with logo and social icons
16
+
17
+ Source: `playground/components/footer/centered-footer-with-logo-and-social-icons.html`
18
+
19
+ ```html
20
+ <footer class="footer footer-horizontal footer-center bg-primary text-primary-content p-10">
21
+ <aside>
22
+ <svg
23
+ width="50"
24
+ height="50"
25
+ viewBox="0 0 24 24"
26
+ xmlns="http://www.w3.org/2000/svg"
27
+ fill-rule="evenodd"
28
+ clip-rule="evenodd"
29
+ class="inline-block fill-current">
30
+ <path
31
+ d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z"></path>
32
+ </svg>
33
+ <p class="font-bold">
34
+ ACME Industries Ltd.
35
+ <br />
36
+ Providing reliable tech since 1992
37
+ </p>
38
+ <p>Copyright © {new Date().getFullYear()} - All right reserved</p>
39
+ </aside>
40
+ <nav>
41
+ <div class="grid grid-flow-col gap-4">
42
+ <a>
43
+ <svg
44
+ xmlns="http://www.w3.org/2000/svg"
45
+ width="24"
46
+ height="24"
47
+ viewBox="0 0 24 24"
48
+ class="fill-current">
49
+ <path
50
+ d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"></path>
51
+ </svg>
52
+ </a>
53
+ <a>
54
+ <svg
55
+ xmlns="http://www.w3.org/2000/svg"
56
+ width="24"
57
+ height="24"
58
+ viewBox="0 0 24 24"
59
+ class="fill-current">
60
+ <path
61
+ d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
62
+ </svg>
63
+ </a>
64
+ <a>
65
+ <svg
66
+ xmlns="http://www.w3.org/2000/svg"
67
+ width="24"
68
+ height="24"
69
+ viewBox="0 0 24 24"
70
+ class="fill-current">
71
+ <path
72
+ d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"></path>
73
+ </svg>
74
+ </a>
75
+ </div>
76
+ </nav>
77
+ </footer>
78
+ ```
79
+
80
+ ### Centered footer with social icons
81
+
82
+ Source: `playground/components/footer/centered-footer-with-social-icons.html`
83
+
84
+ ```html
85
+ <footer class="footer footer-horizontal footer-center bg-base-200 text-base-content rounded p-10">
86
+ <nav class="grid grid-flow-col gap-4">
87
+ <a class="link link-hover">About us</a>
88
+ <a class="link link-hover">Contact</a>
89
+ <a class="link link-hover">Jobs</a>
90
+ <a class="link link-hover">Press kit</a>
91
+ </nav>
92
+ <nav>
93
+ <div class="grid grid-flow-col gap-4">
94
+ <a>
95
+ <svg
96
+ xmlns="http://www.w3.org/2000/svg"
97
+ width="24"
98
+ height="24"
99
+ viewBox="0 0 24 24"
100
+ class="fill-current">
101
+ <path
102
+ d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"></path>
103
+ </svg>
104
+ </a>
105
+ <a>
106
+ <svg
107
+ xmlns="http://www.w3.org/2000/svg"
108
+ width="24"
109
+ height="24"
110
+ viewBox="0 0 24 24"
111
+ class="fill-current">
112
+ <path
113
+ d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
114
+ </svg>
115
+ </a>
116
+ <a>
117
+ <svg
118
+ xmlns="http://www.w3.org/2000/svg"
119
+ width="24"
120
+ height="24"
121
+ viewBox="0 0 24 24"
122
+ class="fill-current">
123
+ <path
124
+ d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"></path>
125
+ </svg>
126
+ </a>
127
+ </div>
128
+ </nav>
129
+ <aside>
130
+ <p>Copyright © {new Date().getFullYear()} - All right reserved by ACME Industries Ltd</p>
131
+ </aside>
132
+ </footer>
133
+ ```
134
+
135
+ ### Footer vertical by default horizontal for sm and up
136
+
137
+ Source: `playground/components/footer/footer-vertical-by-default-horizontal-for-sm-and-up.html`
138
+
139
+ ```html
140
+ <footer class="footer sm:footer-horizontal bg-neutral text-neutral-content p-10">
141
+ <nav>
142
+ <h6 class="footer-title">Services</h6>
143
+ <a class="link link-hover">Branding</a>
144
+ <a class="link link-hover">Design</a>
145
+ <a class="link link-hover">Marketing</a>
146
+ <a class="link link-hover">Advertisement</a>
147
+ </nav>
148
+ <nav>
149
+ <h6 class="footer-title">Company</h6>
150
+ <a class="link link-hover">About us</a>
151
+ <a class="link link-hover">Contact</a>
152
+ <a class="link link-hover">Jobs</a>
153
+ <a class="link link-hover">Press kit</a>
154
+ </nav>
155
+ <nav>
156
+ <h6 class="footer-title">Legal</h6>
157
+ <a class="link link-hover">Terms of use</a>
158
+ <a class="link link-hover">Privacy policy</a>
159
+ <a class="link link-hover">Cookie policy</a>
160
+ </nav>
161
+ </footer>
162
+ ```
163
+
164
+ ### Footer with 2 rows
165
+
166
+ Source: `playground/components/footer/footer-with-2-rows.html`
167
+
168
+ ```html
169
+ <footer class="footer sm:footer-horizontal bg-neutral text-neutral-content grid-rows-2 p-10">
170
+ <nav>
171
+ <h6 class="footer-title">Services</h6>
172
+ <a class="link link-hover">Branding</a>
173
+ <a class="link link-hover">Design</a>
174
+ <a class="link link-hover">Marketing</a>
175
+ <a class="link link-hover">Advertisement</a>
176
+ </nav>
177
+ <nav>
178
+ <h6 class="footer-title">Company</h6>
179
+ <a class="link link-hover">About us</a>
180
+ <a class="link link-hover">Contact</a>
181
+ <a class="link link-hover">Jobs</a>
182
+ <a class="link link-hover">Press kit</a>
183
+ </nav>
184
+ <nav>
185
+ <h6 class="footer-title">Legal</h6>
186
+ <a class="link link-hover">Terms of use</a>
187
+ <a class="link link-hover">Privacy policy</a>
188
+ <a class="link link-hover">Cookie policy</a>
189
+ </nav>
190
+ <nav>
191
+ <h6 class="footer-title">Social</h6>
192
+ <a class="link link-hover">Twitter</a>
193
+ <a class="link link-hover">Instagram</a>
194
+ <a class="link link-hover">Facebook</a>
195
+ <a class="link link-hover">GitHub</a>
196
+ </nav>
197
+ <nav>
198
+ <h6 class="footer-title">Explore</h6>
199
+ <a class="link link-hover">Features</a>
200
+ <a class="link link-hover">Enterprise</a>
201
+ <a class="link link-hover">Security</a>
202
+ <a class="link link-hover">Pricing</a>
203
+ </nav>
204
+ <nav>
205
+ <h6 class="footer-title">Apps</h6>
206
+ <a class="link link-hover">Mac</a>
207
+ <a class="link link-hover">Windows</a>
208
+ <a class="link link-hover">iPhone</a>
209
+ <a class="link link-hover">Android</a>
210
+ </nav>
211
+ </footer>
212
+ ```
213
+
214
+ ### Footer with a form
215
+
216
+ Source: `playground/components/footer/footer-with-a-form.html`
217
+
218
+ ```html
219
+ <footer class="footer sm:footer-horizontal bg-base-200 text-base-content p-10">
220
+ <nav>
221
+ <h6 class="footer-title">Services</h6>
222
+ <a class="link link-hover">Branding</a>
223
+ <a class="link link-hover">Design</a>
224
+ <a class="link link-hover">Marketing</a>
225
+ <a class="link link-hover">Advertisement</a>
226
+ </nav>
227
+ <nav>
228
+ <h6 class="footer-title">Company</h6>
229
+ <a class="link link-hover">About us</a>
230
+ <a class="link link-hover">Contact</a>
231
+ <a class="link link-hover">Jobs</a>
232
+ <a class="link link-hover">Press kit</a>
233
+ </nav>
234
+ <nav>
235
+ <h6 class="footer-title">Legal</h6>
236
+ <a class="link link-hover">Terms of use</a>
237
+ <a class="link link-hover">Privacy policy</a>
238
+ <a class="link link-hover">Cookie policy</a>
239
+ </nav>
240
+ <form>
241
+ <h6 class="footer-title">Newsletter</h6>
242
+ <fieldset class="w-80">
243
+ <label>Enter your email address</label>
244
+ <div class="join">
245
+ <input
246
+ type="text"
247
+ placeholder="username@site.com"
248
+ class="input input-bordered join-item" />
249
+ <button class="btn btn-primary join-item">Subscribe</button>
250
+ </div>
251
+ </fieldset>
252
+ </form>
253
+ </footer>
254
+ ```
255
+
256
+ ### Footer with a logo section
257
+
258
+ Source: `playground/components/footer/footer-with-a-logo-section.html`
259
+
260
+ ```html
261
+ <footer class="footer sm:footer-horizontal bg-base-200 text-base-content p-10">
262
+ <aside>
263
+ <svg
264
+ width="50"
265
+ height="50"
266
+ viewBox="0 0 24 24"
267
+ xmlns="http://www.w3.org/2000/svg"
268
+ fill-rule="evenodd"
269
+ clip-rule="evenodd"
270
+ class="fill-current">
271
+ <path
272
+ d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z"></path>
273
+ </svg>
274
+ <p>
275
+ ACME Industries Ltd.
276
+ <br />
277
+ Providing reliable tech since 1992
278
+ </p>
279
+ </aside>
280
+ <nav>
281
+ <h6 class="footer-title">Services</h6>
282
+ <a class="link link-hover">Branding</a>
283
+ <a class="link link-hover">Design</a>
284
+ <a class="link link-hover">Marketing</a>
285
+ <a class="link link-hover">Advertisement</a>
286
+ </nav>
287
+ <nav>
288
+ <h6 class="footer-title">Company</h6>
289
+ <a class="link link-hover">About us</a>
290
+ <a class="link link-hover">Contact</a>
291
+ <a class="link link-hover">Jobs</a>
292
+ <a class="link link-hover">Press kit</a>
293
+ </nav>
294
+ <nav>
295
+ <h6 class="footer-title">Legal</h6>
296
+ <a class="link link-hover">Terms of use</a>
297
+ <a class="link link-hover">Privacy policy</a>
298
+ <a class="link link-hover">Cookie policy</a>
299
+ </nav>
300
+ </footer>
301
+ ```
302
+
303
+ ### Footer with copyright text and social icons
304
+
305
+ Source: `playground/components/footer/footer-with-copyright-text-and-social-icons.html`
306
+
307
+ ```html
308
+ <footer class="footer sm:footer-horizontal bg-neutral text-neutral-content items-center p-4">
309
+ <aside class="grid-flow-col items-center">
310
+ <svg
311
+ width="36"
312
+ height="36"
313
+ viewBox="0 0 24 24"
314
+ xmlns="http://www.w3.org/2000/svg"
315
+ fill-rule="evenodd"
316
+ clip-rule="evenodd"
317
+ class="fill-current">
318
+ <path
319
+ d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z"></path>
320
+ </svg>
321
+ <p>Copyright © {new Date().getFullYear()} - All right reserved</p>
322
+ </aside>
323
+ <nav class="grid-flow-col gap-4 md:place-self-center md:justify-self-end">
324
+ <a>
325
+ <svg
326
+ xmlns="http://www.w3.org/2000/svg"
327
+ width="24"
328
+ height="24"
329
+ viewBox="0 0 24 24"
330
+ class="fill-current">
331
+ <path
332
+ d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"></path>
333
+ </svg>
334
+ </a>
335
+ <a>
336
+ <svg
337
+ xmlns="http://www.w3.org/2000/svg"
338
+ width="24"
339
+ height="24"
340
+ viewBox="0 0 24 24"
341
+ class="fill-current">
342
+ <path
343
+ d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
344
+ </svg>
345
+ </a>
346
+ <a>
347
+ <svg
348
+ xmlns="http://www.w3.org/2000/svg"
349
+ width="24"
350
+ height="24"
351
+ viewBox="0 0 24 24"
352
+ class="fill-current">
353
+ <path
354
+ d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"></path>
355
+ </svg>
356
+ </a>
357
+ </nav>
358
+ </footer>
359
+ ```
360
+
361
+ ### Footer with copyright text
362
+
363
+ Source: `playground/components/footer/footer-with-copyright-text.html`
364
+
365
+ ```html
366
+ <footer class="footer sm:footer-horizontal footer-center bg-base-300 text-base-content p-4">
367
+ <aside>
368
+ <p>Copyright © {new Date().getFullYear()} - All right reserved by ACME Industries Ltd</p>
369
+ </aside>
370
+ </footer>
371
+ ```
372
+
373
+ ### Footer with links and social icons
374
+
375
+ Source: `playground/components/footer/footer-with-links-and-social-icons.html`
376
+
377
+ ```html
378
+ <footer class="footer sm:footer-horizontal bg-base-300 text-base-content p-10">
379
+ <nav>
380
+ <h6 class="footer-title">Services</h6>
381
+ <a class="link link-hover">Branding</a>
382
+ <a class="link link-hover">Design</a>
383
+ <a class="link link-hover">Marketing</a>
384
+ <a class="link link-hover">Advertisement</a>
385
+ </nav>
386
+ <nav>
387
+ <h6 class="footer-title">Company</h6>
388
+ <a class="link link-hover">About us</a>
389
+ <a class="link link-hover">Contact</a>
390
+ <a class="link link-hover">Jobs</a>
391
+ <a class="link link-hover">Press kit</a>
392
+ </nav>
393
+ <nav>
394
+ <h6 class="footer-title">Social</h6>
395
+ <div class="grid grid-flow-col gap-4">
396
+ <a>
397
+ <svg
398
+ xmlns="http://www.w3.org/2000/svg"
399
+ width="24"
400
+ height="24"
401
+ viewBox="0 0 24 24"
402
+ class="fill-current">
403
+ <path
404
+ d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"></path>
405
+ </svg>
406
+ </a>
407
+ <a>
408
+ <svg
409
+ xmlns="http://www.w3.org/2000/svg"
410
+ width="24"
411
+ height="24"
412
+ viewBox="0 0 24 24"
413
+ class="fill-current">
414
+ <path
415
+ d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
416
+ </svg>
417
+ </a>
418
+ <a>
419
+ <svg
420
+ xmlns="http://www.w3.org/2000/svg"
421
+ width="24"
422
+ height="24"
423
+ viewBox="0 0 24 24"
424
+ class="fill-current">
425
+ <path
426
+ d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"></path>
427
+ </svg>
428
+ </a>
429
+ </div>
430
+ </nav>
431
+ </footer>
432
+ ```
433
+
434
+ ### Footer with logo and social icons
435
+
436
+ Source: `playground/components/footer/footer-with-logo-and-social-icons.html`
437
+
438
+ ```html
439
+ <footer class="footer sm:footer-horizontal bg-neutral text-neutral-content p-10">
440
+ <aside>
441
+ <svg
442
+ width="50"
443
+ height="50"
444
+ viewBox="0 0 24 24"
445
+ xmlns="http://www.w3.org/2000/svg"
446
+ fill-rule="evenodd"
447
+ clip-rule="evenodd"
448
+ class="fill-current">
449
+ <path
450
+ d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z"></path>
451
+ </svg>
452
+ <p>
453
+ ACME Industries Ltd.
454
+ <br />
455
+ Providing reliable tech since 1992
456
+ </p>
457
+ </aside>
458
+ <nav>
459
+ <h6 class="footer-title">Social</h6>
460
+ <div class="grid grid-flow-col gap-4">
461
+ <a>
462
+ <svg
463
+ xmlns="http://www.w3.org/2000/svg"
464
+ width="24"
465
+ height="24"
466
+ viewBox="0 0 24 24"
467
+ class="fill-current">
468
+ <path
469
+ d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"></path>
470
+ </svg>
471
+ </a>
472
+ <a>
473
+ <svg
474
+ xmlns="http://www.w3.org/2000/svg"
475
+ width="24"
476
+ height="24"
477
+ viewBox="0 0 24 24"
478
+ class="fill-current">
479
+ <path
480
+ d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
481
+ </svg>
482
+ </a>
483
+ <a>
484
+ <svg
485
+ xmlns="http://www.w3.org/2000/svg"
486
+ width="24"
487
+ height="24"
488
+ viewBox="0 0 24 24"
489
+ class="fill-current">
490
+ <path
491
+ d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"></path>
492
+ </svg>
493
+ </a>
494
+ </div>
495
+ </nav>
496
+ </footer>
497
+ ```
498
+
499
+ ### Two footer
500
+
501
+ Source: `playground/components/footer/two-footer.html`
502
+
503
+ ```html
504
+ <footer class="footer sm:footer-horizontal bg-base-200 text-base-content p-10">
505
+ <nav>
506
+ <h6 class="footer-title">Services</h6>
507
+ <a class="link link-hover">Branding</a>
508
+ <a class="link link-hover">Design</a>
509
+ <a class="link link-hover">Marketing</a>
510
+ <a class="link link-hover">Advertisement</a>
511
+ </nav>
512
+ <nav>
513
+ <h6 class="footer-title">Company</h6>
514
+ <a class="link link-hover">About us</a>
515
+ <a class="link link-hover">Contact</a>
516
+ <a class="link link-hover">Jobs</a>
517
+ <a class="link link-hover">Press kit</a>
518
+ </nav>
519
+ <nav>
520
+ <h6 class="footer-title">Legal</h6>
521
+ <a class="link link-hover">Terms of use</a>
522
+ <a class="link link-hover">Privacy policy</a>
523
+ <a class="link link-hover">Cookie policy</a>
524
+ </nav>
525
+ </footer>
526
+ <footer class="footer bg-base-200 text-base-content border-base-300 border-t px-10 py-4">
527
+ <aside class="grid-flow-col items-center">
528
+ <svg
529
+ width="24"
530
+ height="24"
531
+ viewBox="0 0 24 24"
532
+ xmlns="http://www.w3.org/2000/svg"
533
+ fill-rule="evenodd"
534
+ clip-rule="evenodd"
535
+ class="fill-current">
536
+ <path
537
+ d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z"></path>
538
+ </svg>
539
+ <p>
540
+ ACME Industries Ltd.
541
+ <br />
542
+ Providing reliable tech since 1992
543
+ </p>
544
+ </aside>
545
+ <nav class="md:place-self-center md:justify-self-end">
546
+ <div class="grid grid-flow-col gap-4">
547
+ <a>
548
+ <svg
549
+ xmlns="http://www.w3.org/2000/svg"
550
+ width="24"
551
+ height="24"
552
+ viewBox="0 0 24 24"
553
+ class="fill-current">
554
+ <path
555
+ d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"></path>
556
+ </svg>
557
+ </a>
558
+ <a>
559
+ <svg
560
+ xmlns="http://www.w3.org/2000/svg"
561
+ width="24"
562
+ height="24"
563
+ viewBox="0 0 24 24"
564
+ class="fill-current">
565
+ <path
566
+ d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
567
+ </svg>
568
+ </a>
569
+ <a>
570
+ <svg
571
+ xmlns="http://www.w3.org/2000/svg"
572
+ width="24"
573
+ height="24"
574
+ viewBox="0 0 24 24"
575
+ class="fill-current">
576
+ <path
577
+ d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"></path>
578
+ </svg>
579
+ </a>
580
+ </div>
581
+ </nav>
582
+ </footer>
583
+ ```