fix: dynamic service count in homepage headline

Was hardcoded "Six services" — now reads from live services array.
Dashboard থেকে service add/remove করলে homepage headline auto-update হবে।

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
khondokartowsif171
2026-05-26 05:16:43 +06:00
parent 3af4ebfa29
commit 090f68867e
+2 -2
View File
@@ -369,8 +369,8 @@ const Projects = () => {
<div className="container"> <div className="container">
<SectionHeader <SectionHeader
eyebrow="What we build" eyebrow="What we build"
num="03 / 06" num={`03 / 06`}
title={<>Six services. One team. All <span style={{ fontFamily: "var(--font-serif)", fontStyle: "italic", fontWeight: 400 }}>production-grade</span>.</>} title={<>{['Zero','One','Two','Three','Four','Five','Six','Seven','Eight','Nine'][services.length] || services.length} service{services.length !== 1 ? 's' : ''}. One team. All <span style={{ fontFamily: "var(--font-serif)", fontStyle: "italic", fontWeight: 400 }}>production-grade</span>.</>}
sub="From landing pages to AI agent runtimes — we take your idea from spec to live deployment." sub="From landing pages to AI agent runtimes — we take your idea from spec to live deployment."
/> />