cinqcinqdev-seo 0.1.54 → 0.1.55
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/dist/module.json
CHANGED
|
@@ -480,7 +480,7 @@ const savePage = async () => {
|
|
|
480
480
|
<!-- ── Top Bar ── -->
|
|
481
481
|
<header class="h-12 bg-white/80 backdrop-blur-md border-b px-6 flex items-center justify-between z-[60] shrink-0">
|
|
482
482
|
<div class="flex items-center gap-4">
|
|
483
|
-
<NuxtLink :to="basePath" class="text-gray-400 hover:text-black transition-colors">←</NuxtLink>
|
|
483
|
+
<NuxtLink :to="page?.type ? `${basePath}/pages/${page.type}` : basePath" class="text-gray-400 hover:text-black transition-colors">←</NuxtLink>
|
|
484
484
|
<div class="flex gap-1 bg-gray-100 p-1 rounded-md">
|
|
485
485
|
<button @click="isLeftSidebarOpen = !isLeftSidebarOpen" :class="['p-1.5 rounded transition-all', isLeftSidebarOpen ? 'bg-white shadow-sm text-[#3d35ff]' : 'text-gray-400']" title="Structure">
|
|
486
486
|
<svg class="w-3 h-3" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M4 6h16M4 12h10M4 18h16"/></svg>
|