diff --git a/website/src/data/tags.tsx b/website/src/data/tags.tsx index a616437e..ff8e12d3 100644 --- a/website/src/data/tags.tsx +++ b/website/src/data/tags.tsx @@ -118,7 +118,9 @@ export type TagType = | "speechservice" | "kernelmemory" | "promptengineering" - | "rag"; + | "rag" + | "featureExperimentation" + | "featuremanagement"; // LIST OF AVAILABLE TAGS // Each tag in lit about must have a defined object here @@ -271,6 +273,11 @@ export const Tags: { [type in TagType]: Tag } = { description: "Template architecture uses Microsoft Authentication Library", type: "Tools", }, + featuremanagement: { + label: "Microsoft Feature Management", + description: "Template architecture uses Microsoft Feature Management", + type: "Tools", + }, // ---- Infrastructure as Code bicep: { @@ -713,4 +720,9 @@ export const Tags: { [type in TagType]: Tag } = { description: "Template architecture involves Prompt Engineering", type: "Topic", }, + featureExperimentation: { + label: "Feature Experimentation", + description: "Template architecture involves Feature Experimentation", + type: "Topic", + }, }; diff --git a/website/static/templates.json b/website/static/templates.json index 2df9a2ac..6836db11 100644 --- a/website/static/templates.json +++ b/website/static/templates.json @@ -2081,8 +2081,6 @@ "new" ] }, - - { "title": "Azure OpenAI Chat Frontend", "description": "Features a Chat-GPT-like user interface, including additional capabilities to debug responses, restyle, revisit history and reset the chat.", @@ -2152,5 +2150,24 @@ "community", "new" ] + }, + { + "title": "Quote of the Day: Feature Experimentation in .NET with Azure App Configuration", + "description": "An ASP.NET Core web app that demonstrates A/B testing using Azure App Configuration and the Microsoft Feature Management library.", + "preview": "./templates/images/quote-of-the-day-diagram.png", + "website": "https://github.com/Azure/AppConfiguration", + "author": "Azure App Configuration", + "source": "https://github.com/Azure-Samples/quote-of-the-day-dotnet", + "tags": [ + "msft", + "dotnetCsharp", + "appinsights", + "appservice", + "azureappconfig", + "featureExperimentation", + "bicep", + "featuremanagement", + "new" + ] } ] diff --git a/website/static/templates/images/quote-of-the-day-diagram.png b/website/static/templates/images/quote-of-the-day-diagram.png new file mode 100644 index 00000000..0387bb17 Binary files /dev/null and b/website/static/templates/images/quote-of-the-day-diagram.png differ