fix: correct test count to verified 1770+ tests, replace SDK methods stat with API endpoints
- Update about page Jest test stat from 775+ to verified 1770+ (confirmed via jest run) - Replace misleading "39 SDK Methods" with "260+ API Endpoints" - These numbers are now accurate as of the 77 test suites / 1770 tests run
This commit is contained in:
@@ -117,7 +117,7 @@ export default function AboutPage() {
|
||||
{ name: "Express", role: "REST API + WebSocket", icon: "⚡" },
|
||||
{ name: "MCP", role: "AI Protocol Layer", icon: "🤖" },
|
||||
{ name: "Stripe", role: "Payment Processing", icon: "💳" },
|
||||
{ name: "Jest", role: "Testing (775+ tests)", icon: "✅" },
|
||||
{ name: "Jest", role: "Testing (1770+ tests)", icon: "✅" },
|
||||
].map((tech) => (
|
||||
<div
|
||||
key={tech.name}
|
||||
@@ -141,8 +141,8 @@ export default function AboutPage() {
|
||||
<div className="grid grid-cols-2 md:grid-cols-4 gap-8">
|
||||
{[
|
||||
{ value: "92+", label: "App Templates" },
|
||||
{ value: "775+", label: "Test Cases" },
|
||||
{ value: "39", label: "SDK Methods" },
|
||||
{ value: "1770+", label: "Test Cases" },
|
||||
{ value: "260+", label: "API Endpoints" },
|
||||
{ value: "5", label: "Languages" },
|
||||
].map((stat) => (
|
||||
<div key={stat.label} className="text-center">
|
||||
|
||||
Reference in New Issue
Block a user