feat(svgs.ts, categories.ts): add new categories (IoT & Home Automation) and Home Assistant SVG data

This commit is contained in:
rperez 2024-12-05 09:02:05 +00:00
parent 4d7f0347bc
commit 02c9136551
2 changed files with 13 additions and 1 deletions

View File

@ -3092,5 +3092,15 @@ export const svgs: iSVG[] = [
dark: '/library/mermaid-logo-dark.svg'
},
url: 'https://mermaid.js.org/'
},
{
title: 'Home Assistant',
category: ['IoT', 'Home Automation', 'Software'],
route: '/library/home-assistant.svg',
wordmark: {
light: '/library/home-assistant-wordmark.svg',
dark: '/library/home-assistant-wordmark-dark.svg'
},
url: 'https://github.com/home-assistant/assets/tree/master/logo'
}
];

View File

@ -26,4 +26,6 @@ export type tCategory =
| 'Google'
| 'Payment'
| 'void(0)'
| 'Authentication';
| 'Authentication'
| 'IoT'
| 'Home Automation';