Skip to content

Commit 3e0a846

Browse files
committed
✨ Add sitemap and stress test index files
- Introduced a new sitemap.xml for better SEO management. - Added Index.razor for performance testing with k6.
1 parent d45411c commit 3e0a846

6 files changed

Lines changed: 497 additions & 0 deletions

File tree

TestArena/Blog/Common/NavigationUtils/SiteMap.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,12 @@ public static class SiteMap
128128
new DateTime(2025, 8, 09),
129129
"images/blog/performance-testing/basic-setup/banner.png",
130130
["Performance Testing", "K6", "API", ".NET"]),
131+
132+
new("Performance Testing for APIs: Stress testing with K6",
133+
"/blog/performance-testing/stress-test-with-k6",
134+
new DateTime(2025, 8, 16),
135+
"images/blog/performance-testing/stress-test/banner.png",
136+
["Performance Testing", "K6", "API", ".NET", "Stress Test"]),
131137
];
132138

133139
public static IEnumerable<PageInfo> PublishedArticles => Pages.Where(p => p.IsPublished && p.PublishedOn <= DateTime.UtcNow);

0 commit comments

Comments
 (0)