diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 76e9f30..5258af6 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -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' } ]; diff --git a/src/types/categories.ts b/src/types/categories.ts index 02fc2a1..51ceba1 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -26,4 +26,6 @@ export type tCategory = | 'Google' | 'Payment' | 'void(0)' - | 'Authentication'; + | 'Authentication' + | 'IoT' + | 'Home Automation';