@icarusmx/creta 0.5.0 → 0.5.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/bin/creta.js
CHANGED
|
@@ -152,7 +152,7 @@ function applyLayoutModifications(content, level) {
|
|
|
152
152
|
<div class="max-w-7xl mx-auto px-4">
|
|
153
153
|
<div class="flex justify-between items-center py-3">
|
|
154
154
|
<div class="flex items-center space-x-3">
|
|
155
|
-
<img src="/logo.
|
|
155
|
+
<img src="/logo.svg" alt="Logo" class="w-8 h-8">
|
|
156
156
|
<span class="text-xl font-bold text-gray-900">{{STUDENT_NAME}}</span>
|
|
157
157
|
</div>
|
|
158
158
|
<div class="hidden md:flex space-x-6">
|
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
<div class="max-w-7xl mx-auto px-4">
|
|
50
50
|
<div class="flex justify-between items-center py-3">
|
|
51
51
|
<div class="flex items-center space-x-3">
|
|
52
|
-
<img src="/logo.
|
|
52
|
+
<img src="/logo.svg" alt="Logo" class="w-8 h-8">
|
|
53
53
|
<span class="text-xl font-bold text-gray-900">{{STUDENT_NAME}}</span>
|
|
54
54
|
</div>
|
|
55
55
|
<div class="hidden md:flex space-x-6">
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="16" cy="16" r="14" fill="#3b82f6" stroke="#1e40af" stroke-width="2"/>
|
|
3
|
+
<text x="16" y="22" text-anchor="middle" fill="white" font-family="Arial, sans-serif" font-size="18" font-weight="bold">C</text>
|
|
4
|
+
</svg>
|