fix: standardize stats, currency, and CTAs site-wide
E2E Test Suite / Smoke Tests (P0) (push) Failing after 9m31s
E2E Test Suite / Critical User Journeys (push) Has been skipped
E2E Test Suite / API Integration Tests (push) Has been skipped
E2E Test Suite / Form Interaction Tests (push) Has been cancelled
E2E Test Suite / Destructive & Chaos Tests (push) Has been cancelled
E2E Test Suite / Cross-Browser Regression (chromium) (push) Has been cancelled
E2E Test Suite / Cross-Browser Regression (firefox) (push) Has been cancelled
E2E Test Suite / Cross-Browser Regression (webkit) (push) Has been cancelled
E2E Test Suite / Mobile Device Tests (push) Has been cancelled
E2E Test Suite / Security Header Tests (push) Has been cancelled
E2E Test Suite / Test Report Summary (push) Has been cancelled
Ping Search Engines / Notify Search Engines (push) Failing after 12m9s
Deploy to Production / Build & Verify (push) Blocked by required conditions
Deploy to Production / Pre-Deploy Tests (push) Blocked by required conditions
Deploy to Production / Deploy to Railway (push) Blocked by required conditions
Deploy to Production / Deploy to Render (push) Blocked by required conditions
Deploy to Production / Deploy to VPS (PM2) (push) Blocked by required conditions
Deploy to Production / Deploy to Fly.io (push) Blocked by required conditions
Deploy to Production / Post-Deploy Verification (push) Blocked by required conditions
Deploy to Production / Notify on Failure (push) Blocked by required conditions

Resolve site-wide credibility/consistency bugs (audit A–E):

- Bug A: replace homepage pricing placeholder "Projects from $X,XXX"
  with the real "₹1,00,000" floor (matches Services Starter tier) in
  PricingTimelineBand.
- Bug C: standardize currency on ₹ — convert contact budget radios
  from $ to ₹ ranges (< ₹1L / ₹1L–₹5L / ₹5L–₹15L / ₹15L+).
- Bug B: adopt one canonical stat set everywhere — 20+ Projects ·
  11 Districts Deployed · 50,000+ Records Managed · 8+ Years Avg
  Experience. Applied to homepage stats counter + ProofNumbers band,
  /portfolio stats bar (removes "4 Specializations"), and /about grid.
  Counter now formats with en-IN grouping so 50,000+ renders correctly.
- Contact: delete the conflicting "200+ companies" claim.
- Bug E: standardize CTA wording — primary "Get my free proposal",
  secondary "See our work". Replaced "Get a free consultation",
  "Book a discovery call", "Schedule a Free Call", "Get Started",
  "Start a Project", "Get Quote", "Get my free consultation",
  "See case studies" across Home, Header, Services, Portfolio, Contact.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
platform-mcp
2026-06-17 13:57:51 +05:30
co-authored by Claude Opus 4.8
parent 3b8e86d81e
commit b1a8fa4167
8 changed files with 58 additions and 56 deletions
+2 -2
View File
@@ -78,7 +78,7 @@ const currentPath = Astro.url.pathname;
href="/contact"
class="btn-primary text-sm"
>
Get Started
Get my free proposal
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
@@ -182,7 +182,7 @@ const currentPath = Astro.url.pathname;
href="/contact"
class="btn-primary w-full justify-center"
>
Get Started
Get my free proposal
<svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
+5 -6
View File
@@ -90,21 +90,20 @@
</p>
<!--
STAKEHOLDER-CONFIRM: replace placeholder "$X,XXX" with the
current floor price agreed with WorkRoot leadership / sales.
Keep the format consistent ("$5,000", "$8,500") so the
min-height reservation below remains accurate.
Pricing floor — mirrors the Services page "Starter" tier
(₹1,00,000). Keep this value in sync with the Starter price in
src/pages/services.astro so the homepage band and the pricing
table never contradict each other.
-->
<h3
id="pricing-card-heading"
data-stakeholder-confirm="pricing-floor"
class="mt-2 text-4xl sm:text-5xl font-bold text-secondary-900 dark:text-secondary-100 leading-none tracking-tight"
>
Projects from
<span
class="block mt-1 bg-gradient-to-br from-primary-600 to-primary-500 dark:from-primary-400 dark:to-primary-300 bg-clip-text text-transparent"
>
$X,XXX
₹1,00,000
</span>
</h3>
+12 -15
View File
@@ -33,24 +33,21 @@ interface Props {
items?: ProofItem[];
}
// TODO(content): confirm these proof numbers with the WorkRoot leadership /
// marketing team before each public release. Defaults reflect the current
// public-facing claims (hero badge: "20+ teams · 11 districts") plus the
// performance budget the site is built against (<2s LCP on 4G).
// Canonical site-wide proof set. These four numbers are the single source of
// truth for WorkRoot's headline stats and MUST stay identical to the homepage
// stats band (src/pages/index.astro), the /portfolio stats bar, and the
// /about stats grid. Changing one without the others reintroduces the
// credibility bug this set was created to fix.
//
// - "20+ Projects Delivered" — sourced from existing homepage stats array
// - "5★ Client Rating" — every testimonial in this file has
// rating: 5; tighten to "4.9★" once a
// weighted average is available
// - "11 Districts Deployed" — matches hero trust badge copy
// - "< 2s Avg Page Load" — performance budget for the marketing site
//
// If real audited numbers become available, prefer those over these defaults.
// - "20+ Projects" — total delivered engagements
// - "11 Districts Deployed" — matches hero trust badge copy
// - "50,000+ Records Managed" — records under management across deployments
// - "8+ Years Avg Experience" — average team experience
const defaultItems: ProofItem[] = [
{ value: '20+', label: 'Projects Delivered' },
{ value: '5★', label: 'Client Rating' },
{ value: '20+', label: 'Projects' },
{ value: '11', label: 'Districts Deployed' },
{ value: '< 2s', label: 'Avg Page Load' },
{ value: '50,000+', label: 'Records Managed' },
{ value: '8+', label: 'Years Avg Experience' },
];
const { items = defaultItems } = Astro.props;