/* global React, Icon, Btn, Reveal, useCountUp */ /* ────────────────────────────────────────────────────────────── tech-footer.jsx — Platform, Cases, About, CTA, Footer ────────────────────────────────────────────────────────────── */ // ── Platform · the control plane ───────────────────────────────── const PILLARS = [ { icon: 'split', title: 'Agentic orchestration', desc: 'AI agents, robots, and people coordinate work across systems from one control plane.' }, { icon: 'shield', title: 'Enterprise governance', desc: 'Policy, audit, and access controls keep autonomous work compliant and observable.' }, { icon: 'globe', title: 'Vendor-neutral integration', desc: 'Connects legacy systems, clouds, and models — no rip-and-replace required.' }, ]; const Platform = () => (
The platform

One control plane for the entire software lifecycle.

Technamics connects every workstream — modernization, QA, mobile, and design — under a single orchestration layer, so automation scales securely without losing the human in the loop.

{PILLARS.map((p, i) => (

{p.title}

{p.desc}

))}
); // ── Case studies ───────────────────────────────────────────────── const CaseMetric = ({ value, suffix, label, decimals = 0 }) => { const [ref, display] = useCountUp(value, { decimals }); return (
{display}{suffix}
{label}
); }; const Cases = () => (
Case study · Global financial services
“We retired a 2-million-line mainframe in nine months. Technamics did in weeks what we'd budgeted years for.”
VP, Platform Engineering
Fortune 100 financial institution
); // ── About · values ─────────────────────────────────────────────── const VALUES = [ { k: 'Humble', d: 'Open-minded, collaborative, ego-free.' }, { k: 'Bold', d: 'Courageous, innovative, decisive.' }, { k: 'Immersed', d: 'Passionate, customer-centric, accountable.' }, { k: 'Fast', d: 'Agile, proactive, results-oriented.' }, ]; const About = () => (
About Technamics

Accelerating human achievement since 1998.

We automate the repetitive so people can focus on creativity, strategy, and judgment — building toward a future where agents, robots, and humans work together.

{VALUES.map((v) => (
{v.k}

{v.d}

))}
); // ── CTA band ───────────────────────────────────────────────────── const CTA = ({ onGetStarted }) => (

Put your software lifecycle on autopilot.

Start with one workstream — modernization, QA, mobile, or design — and scale across the enterprise.

Get started Talk to sales
); // ── Footer ─────────────────────────────────────────────────────── const FOOTER_COLS = [ { h: 'Solutions', items: ['App Modernization', 'QA Automation', 'Mobile Development', 'UI/UX Design'] }, { h: 'Platform', items: ['Orchestration', 'Governance', 'Integrations', 'Security'] }, { h: 'Company', items: ['About', 'Case Studies', 'Careers', 'Contact'] }, ]; const Footer = () => ( ); Object.assign(window, { Platform, Cases, About, CTA, Footer });