From 2ef7bfc3cedee789d4e717f8ff8df0d5551bfc8c Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:35:15 -0500 Subject: [PATCH 01/16] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Add=20Microsoft?= =?UTF-8?q?=20category?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 24 ++++++++++++------------ src/types/categories.ts | 3 ++- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index f0978b9..3b9a39c 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -351,7 +351,7 @@ export const svgs: iSVG[] = [ }, { title: "Visual Studio Code", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/vscode.svg", url: "https://code.visualstudio.com/", brandUrl: "https://code.visualstudio.com/brand", @@ -732,7 +732,7 @@ export const svgs: iSVG[] = [ }, { title: "Visual Studio", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/visual-studio.svg", url: "https://visualstudio.microsoft.com", }, @@ -985,7 +985,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft Azure", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/azure.svg", url: "https://azure.microsoft.com/", }, @@ -1351,7 +1351,7 @@ export const svgs: iSVG[] = [ }, { title: "Windows", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/windows.svg", url: "https://www.microsoft.com/windows", }, @@ -1532,7 +1532,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/microsoft.svg", url: "https://www.microsoft.com/", }, @@ -1746,7 +1746,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft SQL Server ", - category: "Database", + category: ["Database", "Microsoft"], route: "/library/sql-server.svg", url: "https://www.microsoft.com/en-us/sql-server/", }, @@ -1997,7 +1997,7 @@ export const svgs: iSVG[] = [ }, { title: "Edge", - category: "Browser", + category: ["Browser", "Microsoft"], route: "/library/edge.svg", url: "https://www.microsoft.com/en-us/edge", }, @@ -2801,7 +2801,7 @@ export const svgs: iSVG[] = [ }, { title: "C#", - category: "Language", + category: ["Language", "Microsoft"], route: "/library/csharp.svg", url: "https://dotnet.microsoft.com/languages/csharp", }, @@ -2987,7 +2987,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft Todo", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/microsoft-todo.svg", url: "https://to-do.office.com/", }, @@ -3448,13 +3448,13 @@ export const svgs: iSVG[] = [ }, { title: "PowerToys", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/powertoys.svg", url: "https://learn.microsoft.com/en-us/windows/powertoys/", }, { title: "PowerShell", - category: "Language", + category: ["Language", "Microsoft"], route: "/library/powershell.svg", url: "https://learn.microsoft.com/en-us/powershell/", }, @@ -3485,7 +3485,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft .NET", - category: ["Framework", "Library", "Devtool"], + category: ["Framework", "Library", "Devtool", "Microsoft"], route: "/library/dotnet.svg", url: "https://dotnet.microsoft.com", }, diff --git a/src/types/categories.ts b/src/types/categories.ts index 71f30a3..e897a31 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -34,4 +34,5 @@ export type Category = | "Sync Engine" | "Platform" | "Automation" - | "Nuxt"; + | "Nuxt" + | "Microsoft"; From bd7813693b574949208b8a2f2fe83e86b4e7f955 Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:41:46 -0500 Subject: [PATCH 02/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Access?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-access.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-access.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 3b9a39c..12cc7d9 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -989,6 +989,12 @@ export const svgs: iSVG[] = [ route: "/library/azure.svg", url: "https://azure.microsoft.com/", }, + { + title: "Microsoft Access", + category: ["Database", "Microsoft"], + route: "/library/microsoft-access.svg", + url: "https://www.microsoft.com/microsoft-365/access", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-access.svg b/static/library/microsoft-access.svg new file mode 100644 index 0000000..336db85 --- /dev/null +++ b/static/library/microsoft-access.svg @@ -0,0 +1 @@ + \ No newline at end of file From b473c7ca0e16536bedc98c30166eda331132172e Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:43:50 -0500 Subject: [PATCH 03/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Clipcham?= =?UTF-8?q?p=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-clipchamp.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-clipchamp.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 12cc7d9..a92efcf 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -995,6 +995,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-access.svg", url: "https://www.microsoft.com/microsoft-365/access", }, + { + title: "Microsoft Clipchamp", + category: ["Software", "Design", "Entertainment", "Microsoft"], + route: "/library/microsoft-clipchamp.svg", + url: "https://clipchamp.com/", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-clipchamp.svg b/static/library/microsoft-clipchamp.svg new file mode 100644 index 0000000..a5ccfd1 --- /dev/null +++ b/static/library/microsoft-clipchamp.svg @@ -0,0 +1 @@ + \ No newline at end of file From 2c322651270ebed7bc21fc4a98944e037f0bebc8 Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:44:52 -0500 Subject: [PATCH 04/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Copilot?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-copilot.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-copilot.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index a92efcf..9e2c882 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1001,6 +1001,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-clipchamp.svg", url: "https://clipchamp.com/", }, + { + title: "Microsoft Copilot", + category: ["AI", "Software", "Devtool", "Microsoft"], + route: "/library/microsoft-copilot.svg", + url: "https://copilot.microsoft.com/", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-copilot.svg b/static/library/microsoft-copilot.svg new file mode 100644 index 0000000..ab8ff8e --- /dev/null +++ b/static/library/microsoft-copilot.svg @@ -0,0 +1 @@ + \ No newline at end of file From 9cdbc4353d2491bd30fa54818929d36bbf3e945a Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:45:17 -0500 Subject: [PATCH 05/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Defender?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-defender.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-defender.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 9e2c882..7aac64e 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1007,6 +1007,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-copilot.svg", url: "https://copilot.microsoft.com/", }, + { + title: "Microsoft Defender", + category: ["Cybersecurity", "Software", "Microsoft"], + route: "/library/microsoft-defender.svg", + url: "https://www.microsoft.com/microsoft-365/microsoft-defender-for-individuals", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-defender.svg b/static/library/microsoft-defender.svg new file mode 100644 index 0000000..dbd7d2d --- /dev/null +++ b/static/library/microsoft-defender.svg @@ -0,0 +1 @@ + \ No newline at end of file From 962865f3abbd52a8d5afc982e29a5e50708c0bfb Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:46:43 -0500 Subject: [PATCH 06/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Designer?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-designer.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-designer.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 7aac64e..7801ef5 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1013,6 +1013,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-defender.svg", url: "https://www.microsoft.com/microsoft-365/microsoft-defender-for-individuals", }, + { + title: "Microsoft Designer", + category: ["Design", "AI", "Software", "Microsoft"], + route: "/library/microsoft-designer.svg", + url: "https://designer.microsoft.com/", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-designer.svg b/static/library/microsoft-designer.svg new file mode 100644 index 0000000..1df8ec5 --- /dev/null +++ b/static/library/microsoft-designer.svg @@ -0,0 +1 @@ + \ No newline at end of file From e8272a347d2f945cf9983c79f61ea0a86bb5308c Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:48:17 -0500 Subject: [PATCH 07/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Editor?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-editor.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-editor.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 7801ef5..c91a2f1 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1019,6 +1019,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-designer.svg", url: "https://designer.microsoft.com/", }, + { + title: "Microsoft Editor", + category: ["Software", "AI", "Microsoft"], + route: "/library/microsoft-editor.svg", + url: "https://www.microsoft.com/microsoft-365/microsoft-editor", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-editor.svg b/static/library/microsoft-editor.svg new file mode 100644 index 0000000..a0a8ed7 --- /dev/null +++ b/static/library/microsoft-editor.svg @@ -0,0 +1 @@ + \ No newline at end of file From 86760a1c596f0f28ccb878edb2c705820f7a3ade Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:48:42 -0500 Subject: [PATCH 08/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Excel=20?= =?UTF-8?q?logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-excel.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-excel.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index c91a2f1..5d0b97d 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1025,6 +1025,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-editor.svg", url: "https://www.microsoft.com/microsoft-365/microsoft-editor", }, + { + title: "Microsoft Excel", + category: ["Software", "Microsoft"], + route: "/library/microsoft-excel.svg", + url: "https://www.microsoft.com/microsoft-365/excel", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-excel.svg b/static/library/microsoft-excel.svg new file mode 100644 index 0000000..2b1ad16 --- /dev/null +++ b/static/library/microsoft-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file From 7f9f87b8bbed76137d2311769fcbb480abba2355 Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:49:46 -0500 Subject: [PATCH 09/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20OneDrive?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-onedrive.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-onedrive.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 5d0b97d..10c147a 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1031,6 +1031,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-excel.svg", url: "https://www.microsoft.com/microsoft-365/excel", }, + { + title: "Microsoft OneDrive", + category: ["Hosting", "Software", "Microsoft"], + route: "/library/microsoft-onedrive.svg", + url: "https://www.microsoft.com/microsoft-365/onedrive/online-cloud-storage", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-onedrive.svg b/static/library/microsoft-onedrive.svg new file mode 100644 index 0000000..1a80bd5 --- /dev/null +++ b/static/library/microsoft-onedrive.svg @@ -0,0 +1 @@ + \ No newline at end of file From ab5a98b2c9a9b6ba9e50aa2217d08d3ac6d5ebaa Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:50:29 -0500 Subject: [PATCH 10/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20OneNote?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-onenote.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-onenote.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 10c147a..74b4636 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1037,6 +1037,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-onedrive.svg", url: "https://www.microsoft.com/microsoft-365/onedrive/online-cloud-storage", }, + { + title: "Microsoft OneNote", + category: ["Software", "Microsoft"], + route: "/library/microsoft-onenote.svg", + url: "https://www.microsoft.com/microsoft-365/onenote/digital-note-taking-app", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-onenote.svg b/static/library/microsoft-onenote.svg new file mode 100644 index 0000000..8ec0186 --- /dev/null +++ b/static/library/microsoft-onenote.svg @@ -0,0 +1 @@ + \ No newline at end of file From a6a86f4cd7acd5c121e865d5b400f7c417463fcb Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:52:28 -0500 Subject: [PATCH 11/16] =?UTF-8?q?=E2=9C=A8=20Update=20Microsoft=20Outlook?= =?UTF-8?q?=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 8 ++++---- static/library/microsoft-outlook.svg | 1 + static/library/outlook.svg | 24 ------------------------ 3 files changed, 5 insertions(+), 28 deletions(-) create mode 100644 static/library/microsoft-outlook.svg delete mode 100644 static/library/outlook.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 74b4636..e931913 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2519,10 +2519,10 @@ export const svgs: iSVG[] = [ url: "https://www.gmail.com", }, { - title: "Outlook", - category: "Software", - route: "/library/outlook.svg", - url: "https://www.outlook.com", + title: "Microsoft Outlook", + category: ["Software", "Microsoft"], + route: "/library/microsoft-outlook.svg", + url: "https://www.microsoft.com/microsoft-365/outlook/email-and-calendar-software-application", }, { title: "Slack", diff --git a/static/library/microsoft-outlook.svg b/static/library/microsoft-outlook.svg new file mode 100644 index 0000000..6da07c7 --- /dev/null +++ b/static/library/microsoft-outlook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/outlook.svg b/static/library/outlook.svg deleted file mode 100644 index 4cee480..0000000 --- a/static/library/outlook.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - From ca57dbcc4f5969aa4aae471f084bc0511886a8a1 Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:54:04 -0500 Subject: [PATCH 12/16] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20unused=20Microsof?= =?UTF-8?q?t=20OneNote=20SVG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ------ static/library/onenote.svg | 1 - 2 files changed, 7 deletions(-) delete mode 100644 static/library/onenote.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index e931913..de10024 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -28,12 +28,6 @@ export const svgs: iSVG[] = [ route: "/library/kimi.svg", url: "https://kimi.ai/", }, - { - title: "OneNote", - category: "Software", - route: "/library/onenote.svg", - url: "https://onenote.com", - }, { title: "Perspective", category: "Software", diff --git a/static/library/onenote.svg b/static/library/onenote.svg deleted file mode 100644 index f2f1d1d..0000000 --- a/static/library/onenote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From 98ffd67bd767acd97b2d5fbc65197d04922edc88 Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:55:30 -0500 Subject: [PATCH 13/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20PowerPoi?= =?UTF-8?q?nt=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-powerpoint.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-powerpoint.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index de10024..09b5904 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1037,6 +1037,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-onenote.svg", url: "https://www.microsoft.com/microsoft-365/onenote/digital-note-taking-app", }, + { + title: "Microsoft PowerPoint", + category: ["Software", "Design", "Microsoft"], + route: "/library/microsoft-powerpoint.svg", + url: "https://www.microsoft.com/microsoft-365/powerpoint", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-powerpoint.svg b/static/library/microsoft-powerpoint.svg new file mode 100644 index 0000000..066d6ae --- /dev/null +++ b/static/library/microsoft-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file From 88cf3e6a97716247cc3cab57836ab72357ee2f3c Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:57:17 -0500 Subject: [PATCH 14/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20SharePoi?= =?UTF-8?q?nt=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-sharepoint.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-sharepoint.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 09b5904..95eb85d 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1043,6 +1043,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-powerpoint.svg", url: "https://www.microsoft.com/microsoft-365/powerpoint", }, + { + title: "Microsoft SharePoint", + category: ["Hosting", "Software", "Community", "Microsoft"], + route: "/library/microsoft-sharepoint.svg", + url: "https://www.microsoft.com/microsoft-365/sharepoint/collaboration-software", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-sharepoint.svg b/static/library/microsoft-sharepoint.svg new file mode 100644 index 0000000..5b4bf5f --- /dev/null +++ b/static/library/microsoft-sharepoint.svg @@ -0,0 +1 @@ + \ No newline at end of file From b9f013ad1cd29e7189ec1a40a3e1042d7cc2e4f3 Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 11:57:58 -0500 Subject: [PATCH 15/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Teams=20?= =?UTF-8?q?logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-teams.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-teams.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 95eb85d..893c6d0 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1049,6 +1049,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-sharepoint.svg", url: "https://www.microsoft.com/microsoft-365/sharepoint/collaboration-software", }, + { + title: "Microsoft Teams", + category: ["Software", "Community", "Microsoft"], + route: "/library/microsoft-teams.svg", + url: "https://www.microsoft.com/microsoft-teams/group-chat-software", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-teams.svg b/static/library/microsoft-teams.svg new file mode 100644 index 0000000..bd11c50 --- /dev/null +++ b/static/library/microsoft-teams.svg @@ -0,0 +1 @@ + \ No newline at end of file From dd6741e221197f8ae9c143c29ff7ee49e555b26b Mon Sep 17 00:00:00 2001 From: jaycodev Date: Sat, 11 Oct 2025 12:00:10 -0500 Subject: [PATCH 16/16] =?UTF-8?q?=F0=9F=93=A6=20Add=20Microsoft=20Word=20l?= =?UTF-8?q?ogo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/microsoft-word.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 static/library/microsoft-word.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 893c6d0..17ce979 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1055,6 +1055,12 @@ export const svgs: iSVG[] = [ route: "/library/microsoft-teams.svg", url: "https://www.microsoft.com/microsoft-teams/group-chat-software", }, + { + title: "Microsoft Word", + category: ["Software", "Microsoft"], + route: "/library/microsoft-word.svg", + url: "https://www.microsoft.com/microsoft-365/word", + }, { title: "Heroku", category: "Software", diff --git a/static/library/microsoft-word.svg b/static/library/microsoft-word.svg new file mode 100644 index 0000000..dc5261f --- /dev/null +++ b/static/library/microsoft-word.svg @@ -0,0 +1 @@ + \ No newline at end of file