diff --git a/src/data/apps.tsx b/src/data/apps.tsx index 9aa1fe1..8bbf63e 100644 --- a/src/data/apps.tsx +++ b/src/data/apps.tsx @@ -25,6 +25,7 @@ export type TagType = | 'product' | 'kotlin' | 'java' + | 'typescript' | 'webhook' // Add apps to this list @@ -38,12 +39,19 @@ const Apps: App[] = [ tags: ['kotlin'], }, { - title: 'Callback and Standalone Code Examples', - description: 'Example code snippets demonstrating how to use the Wire SDK across various scenarios.', + title: 'Callback and Standalone Code Examples (Java)', + description: 'Example code snippets demonstrating how to use the Wire JVM SDK across various scenarios.', icon: null, source: 'https://github.com/wireapp/wire-apps-jvm-sdk/tree/main/sample/sample-java/src/main/java/com/wire/sdk/sample/examples', tags: ['java'], }, + { + title: 'Callback and Standalone Code Examples (Typescript)', + description: 'Example code snippets demonstrating how to use the Wire Typescript SDK across various scenarios.', + icon: null, + source: 'https://github.com/wireapp/wire-apps-js-sdk/tree/main/sample/src/examples', + tags: ['typescript'], + }, { title: 'GitHub App', description: 'Get GitHub notifications directly in Wire', @@ -124,6 +132,15 @@ export const Tags: { [type in TagType]: Tag } = { color: '#2a66d0', }, + typescript: { + label: translate({ message: 'Typescript' }), + description: translate({ + message: 'Apps written in Typescript programming language', + id: 'showcase.tag.typescript.description', + }), + color: '#3178C6', + }, + webhook: { label: translate({ message: 'Webhook' }), description: translate({