@icarusmx/creta 0.1.0 → 0.1.1
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.
package/package.json
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
- Usa 'hover:text-blue-600' para efectos hover
|
|
44
44
|
|
|
45
45
|
ESTRUCTURA SUGERIDA:
|
|
46
|
+
```html
|
|
46
47
|
<nav class="bg-white shadow-sm">
|
|
47
48
|
<div class="max-w-7xl mx-auto px-4">
|
|
48
49
|
<div class="flex justify-between items-center py-3">
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
</div>
|
|
52
53
|
</div>
|
|
53
54
|
</nav>
|
|
55
|
+
```
|
|
54
56
|
-->
|
|
55
57
|
|
|
56
58
|
<nav class="bg-white shadow-sm">
|
|
@@ -76,6 +78,7 @@
|
|
|
76
78
|
- Usa 'text-center text-gray-600 text-sm' para texto centrado y gris
|
|
77
79
|
|
|
78
80
|
ESTRUCTURA SUGERIDA:
|
|
81
|
+
```html
|
|
79
82
|
<footer class="bg-gray-50 border-t">
|
|
80
83
|
<div class="max-w-7xl mx-auto py-8 px-4">
|
|
81
84
|
<div class="text-center text-gray-600 text-sm">
|
|
@@ -83,6 +86,7 @@
|
|
|
83
86
|
</div>
|
|
84
87
|
</div>
|
|
85
88
|
</footer>
|
|
89
|
+
```
|
|
86
90
|
-->
|
|
87
91
|
|
|
88
92
|
<footer class="bg-gray-50 border-t">
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
- Usa 'bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg' para botones
|
|
16
16
|
|
|
17
17
|
ESTRUCTURA SUGERIDA:
|
|
18
|
+
```html
|
|
18
19
|
<section class="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-100">
|
|
19
20
|
<div class="max-w-4xl mx-auto px-4 text-center">
|
|
20
21
|
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6">
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
</a>
|
|
29
30
|
</div>
|
|
30
31
|
</section>
|
|
32
|
+
```
|
|
31
33
|
-->
|
|
32
34
|
|
|
33
35
|
<svelte:head>
|