Compare commits

..

No commits in common. "1093b962cd799d7157205fa607c9a1c006ccac56" and "244744488fb8a6952f5b7f0a1cd7de0f019c1e49" have entirely different histories.

2 changed files with 8 additions and 6 deletions

View File

@ -102,11 +102,7 @@
<div class="flex items-center space-x-1 justify-center"> <div class="flex items-center space-x-1 justify-center">
{#if Array.isArray(svgInfo.category)} {#if Array.isArray(svgInfo.category)}
{#each svgInfo.category.slice(0, maxVisibleCategories) as c, index} {#each svgInfo.category.slice(0, maxVisibleCategories) as c, index}
<a <a href={`/directory/${c.toLowerCase()}`} class={badgeStyles}>{c}</a>
href={`/directory/${c.toLowerCase()}`}
class={badgeStyles}
title={`This icon is part of the ${svgInfo.category} category`}>{c}</a
>
{/each} {/each}
{#if svgInfo.category.length > maxVisibleCategories} {#if svgInfo.category.length > maxVisibleCategories}

View File

@ -2010,7 +2010,7 @@ export const svgs: iSVG[] = [
}, },
{ {
title: 'Stripe', title: 'Stripe',
category: ['Software', 'Payment'], category: 'Software',
route: '/library/stripe.svg', route: '/library/stripe.svg',
url: 'https://stripe.com/' url: 'https://stripe.com/'
}, },
@ -2508,6 +2508,12 @@ export const svgs: iSVG[] = [
}, },
url: 'https://www.markdownguide.org/' url: 'https://www.markdownguide.org/'
}, },
{
title: 'Movie Web',
category: 'Entertainment',
route: '/library/movie-web.svg',
url: 'https://movie-web.app/'
},
{ {
title: 'Radix UI', title: 'Radix UI',
category: 'Library', category: 'Library',