Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions src/schemas/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ const languages: Array<object> = [
{ label: "WebAssembly", variants: ["Web Assembly", "wasm"] },
];

const operating_systems: Array<object> = [
{ label: "Android", variants: ["ChromeOS"] },
{ label: "iOS" },
{ label: "Linux" },
{ label: "MacOS", variants: ["OS X"] },
{ label: "Windows", variants: ["ms windows"] },
];

const presentation: Array<object> = [{ label: "Video" }];

const product_features: Array<object> = [
{ label: "Web Crypto", variants: ["webcrypto"] },
{ label: "RPC" },
Expand Down Expand Up @@ -90,14 +100,6 @@ const protocols: Array<object> = [
{ label: "Wireguard" },
];

const operating_systems: Array<object> = [
{ label: "Android", variants: ["ChromeOS"] },
{ label: "iOS" },
{ label: "Linux" },
{ label: "MacOS", variants: ["OS X"] },
{ label: "Windows", variants: ["ms windows"] },
];

const use_cases: Array<object> = [
{ label: "AI" },
{ label: "Authentication", variants: ["auth"] },
Expand Down Expand Up @@ -128,6 +130,7 @@ export const tags = {
frameworks,
integrations,
languages,
presentation,
product_features,
protocols,
operating_systems,
Expand Down
Loading