diff --git a/README.md b/README.md
index 65c4587..50ef4e1 100644
--- a/README.md
+++ b/README.md
@@ -54,6 +54,8 @@ A list of extensions that use the [svgl API](https://svgl.app/api), created by t
| ---------------------------------------------------------------------------------------------------------- | ------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
|
| SVGL CLI | A CLI for easily adding SVG icons to your project. | [sujjeee](https://twitter.com/sujjeeee) | [GitHub Repository](https://github.com/sujjeee/svgls) |
|
| SVGL for React | An open-source NPM package that offers a SVGL Logos for React. | [ridemountainpig](https://x.com/ridemountainpig) | [GitHub Repository](https://github.com/ridemountainpig/svgl-react?tab=readme-ov-file#svgl-react) |
+|
| SVGL for Vue | An open-source NPM package that offers a SVGL Logos for Vue. | [selemondev](https://x.com/selemondev) | [GitHub Repository](https://github.com/selemondev/svgl-vue?tab=readme-ov-file#--svgl-vue--) |
+|
| SVGL for Svelte | An open-source NPM package that offers a SVGL Logos for Svelte. | [selemondev](https://x.com/selemondev) | [GitHub Repository](https://github.com/selemondev/svgl-svelte#--svgl-svelte--) |
|
| SVGL for Figma | Add svgs from svgl to your Figma project. | [quilljou](https://twitter.com/quillzhou) | [Figma Plugin](https://www.figma.com/community/plugin/1320306989350693206/svgl) |
|
| SVGL for PowerToys | Search & copy SVG logos in PowerToys Run. | [SameerJS6](https://x.com/Sameerjs6) | [Website](https://svgl.sameerjs.com/) |
|
| SVGL for Raycast | Search SVG logos via svgl. | [1weiho](https://twitter.com/1weiho) | [Raycast Store](https://www.raycast.com/1weiho/svgl) |
diff --git a/src/data/svgs.ts b/src/data/svgs.ts
index 650821c..98ea8ea 100644
--- a/src/data/svgs.ts
+++ b/src/data/svgs.ts
@@ -23,9 +23,9 @@ export const svgs: iSVG[] = [
{
title: 'Mattermost',
category: 'Software',
- "route": {
- "light": "/library/mattermost-light.svg",
- "dark": "/library/mattermost-dark.svg"
+ route: {
+ light: '/library/mattermost-light.svg',
+ dark: '/library/mattermost-dark.svg'
},
url: 'http://mattermost.com/'
},
@@ -510,6 +510,15 @@ export const svgs: iSVG[] = [
route: '/library/telegram.svg',
url: 'https://web.telegram.org/'
},
+ {
+ title: 'Matrix',
+ category: 'Social',
+ route: {
+ light: '/library/matrix-light.svg',
+ dark: '/library/matrix-dark.svg'
+ },
+ url: 'https://matrix.org/'
+ },
{
title: 'WhatsApp',
category: 'Social',
diff --git a/static/library/matrix-dark.svg b/static/library/matrix-dark.svg
new file mode 100644
index 0000000..56e9a21
--- /dev/null
+++ b/static/library/matrix-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/library/matrix-light.svg b/static/library/matrix-light.svg
new file mode 100644
index 0000000..248794a
--- /dev/null
+++ b/static/library/matrix-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file