feat: update theme handling and improve icons
All checks were successful
build dist / build-dist (push) Successful in 47s

This commit is contained in:
z0x 2025-05-23 21:04:11 -04:00
parent 0e48c6baf7
commit 17a1981fba
8 changed files with 45 additions and 49 deletions

View file

@ -55,8 +55,8 @@ const { Content, headings } = await render(post);
>
<Breadcrumbs
items={[
{ href: '/blog', label: 'Blog', icon: 'lucide:archive' },
{ label: post.data.title, icon: 'lucide:file-text' },
{ href: '/blog', label: 'Blog', icon: 'lucide:library-big' },
{ label: post.data.title, icon: 'lucide:book-open-text' },
]}
class="col-start-2"
/>

View file

@ -40,8 +40,8 @@ const years = Object.keys(postsByYear).sort(
<Container class="flex grow flex-col gap-y-6">
<Breadcrumbs
items={[
{ label: 'Blog', href: '/blog', icon: 'lucide:archive' },
{ label: `Page ${page.currentPage}`, icon: 'lucide:folder-open' },
{ label: 'Blog', href: '/blog', icon: 'lucide:library-big' },
{ label: `Page ${page.currentPage}`, icon: 'lucide:book-copy' },
]}
/>