fix: update topbar links

This commit is contained in:
2026-09-10 20:00:59 +05:00
parent 45dc54b6aa
commit f7623ab3bb
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
let { title, id, description, index, icon }: Props = $props(); let { title, id, description, index, icon }: Props = $props();
</script> </script>
<a class="tool-card" href={resolve("/preview/tools/[id]", { id })}> <a class="tool-card" href={resolve("/tools/[id]", { id })}>
{#if icon}<span class="tool-icon"><Icon {icon} size={19} /></span>{/if} {#if icon}<span class="tool-icon"><Icon {icon} size={19} /></span>{/if}
<span class="tool-copy"> <span class="tool-copy">
<strong>{title}</strong> <strong>{title}</strong>
+3 -3
View File
@@ -3,9 +3,9 @@
</script> </script>
<nav class="nav"> <nav class="nav">
<a href={resolve("/preview")}>Home page</a> <a href={resolve("/")}>Home page</a>
<a href={resolve("/preview/list-tools")}>Catalog</a> <a href={resolve("/list-tools")}>Catalog</a>
<a href={resolve("/preview/kit")}> UI Kit </a> <a href={resolve("/kit")}> UI Kit </a>
</nav> </nav>
<style> <style>