We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc6c8f commit 5c2f090Copy full SHA for 5c2f090
src/components/AboutButton.astro
@@ -0,0 +1,8 @@
1
+---
2
+import LucideInfo from "~icons/lucide/info";
3
4
+
5
+<a href="/about" class="btn-sm-outline">
6
+ <LucideInfo class="size-4" />
7
+ <span>About</span>
8
+</a>
src/components/DonateButton.astro
+import LucideHeart from "~icons/lucide/heart";
+<a href="/donate" class="btn-sm-outline">
+ <LucideHeart class="size-4" />
+ <span>Donate</span>
src/components/JsDocsIoButton.astro
+import LucidePackageSearch from "~icons/lucide/package-search";
+<a href="/" class="flex items-center gap-2">
+ <LucidePackageSearch class="size-6" />
+ <span class="font-bold">jsDocs.io</span>
0 commit comments