add carbon rating

This commit is contained in:
2024-06-21 15:57:11 -04:00
parent 74c54b996e
commit 98c1a85f21
5 changed files with 12 additions and 31 deletions
+3
View File
@@ -13,4 +13,7 @@ interface Props {}
<p>
<a href="/rss.xml"> Subscribe with RSS</a>
</p>
<div id="wcb" class="carbonbadge"></div>
</footer>
<script src="https://unpkg.com/website-carbon-badges@1.1.3/b.min.js" defer
></script>
+6
View File
@@ -6,6 +6,12 @@ const { pathname } = Astro.url;
interface Props {}
interface NavLink {
label: string;
icon: string;
path: string;
}
const navLinks: NavLink[] = [
{ label: 'Blog', icon: 'pen', path: '/' },
{ label: 'About', icon: 'person', path: '/about/' },