diff --git a/src/data/svgs.ts b/src/data/svgs.ts index b0c0eca..98f10d4 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -32,12 +32,6 @@ export const svgs: iSVG[] = [ }, url: "https://kimi.ai", }, - { - title: "OneNote", - category: "Software", - route: "/library/onenote.svg", - url: "https://onenote.com", - }, { title: "Perspective", category: "Software", @@ -355,7 +349,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", @@ -740,7 +734,7 @@ export const svgs: iSVG[] = [ }, { title: "Visual Studio", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/visual-studio.svg", url: "https://visualstudio.microsoft.com", }, @@ -993,10 +987,88 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft Azure", - category: "Software", + category: ["Software", "Microsoft"], 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: "Microsoft Clipchamp", + category: ["Software", "Design", "Entertainment", "Microsoft"], + 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: "Microsoft Defender", + category: ["Cybersecurity", "Software", "Microsoft"], + 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: "Microsoft Editor", + category: ["Software", "AI", "Microsoft"], + 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: "Microsoft OneDrive", + category: ["Hosting", "Software", "Microsoft"], + 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: "Microsoft PowerPoint", + category: ["Software", "Design", "Microsoft"], + 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: "Microsoft Teams", + category: ["Software", "Community", "Microsoft"], + 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", @@ -1359,7 +1431,7 @@ export const svgs: iSVG[] = [ }, { title: "Windows", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/windows.svg", url: "https://www.microsoft.com/windows", }, @@ -1540,7 +1612,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/microsoft.svg", url: "https://www.microsoft.com/", }, @@ -1754,7 +1826,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/", }, @@ -2005,7 +2077,7 @@ export const svgs: iSVG[] = [ }, { title: "Edge", - category: "Browser", + category: ["Browser", "Microsoft"], route: "/library/edge.svg", url: "https://www.microsoft.com/en-us/edge", }, @@ -2473,10 +2545,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", @@ -2809,7 +2881,7 @@ export const svgs: iSVG[] = [ }, { title: "C#", - category: "Language", + category: ["Language", "Microsoft"], route: "/library/csharp.svg", url: "https://dotnet.microsoft.com/languages/csharp", }, @@ -2995,7 +3067,7 @@ export const svgs: iSVG[] = [ }, { title: "Microsoft Todo", - category: "Software", + category: ["Software", "Microsoft"], route: "/library/microsoft-todo.svg", url: "https://to-do.office.com/", }, @@ -3456,13 +3528,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/", }, @@ -3493,7 +3565,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"; 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 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 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 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 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 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 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 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 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 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/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 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 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 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 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 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 @@ - - - - - - - - - - - - - - - - - - - - - - - -