// app/process/page.tsx 'use client'; import * as React from 'react'; import { Navbar } from '@workspace/ui/components/layout'; import { Footer } from '@workspace/ui/components/layout'; import { Container } from '@workspace/ui/components/layout'; import { AnimatedSection } from '@workspace/ui/components/animate-ui/section'; import { Steps } from '@workspace/ui/components/content'; import { FinalCTASection } from '@workspace/ui/components/content'; import { Badge } from '@workspace/ui/components/content'; import { Card, CardContent, CardHeader, CardTitle, } from '@workspace/ui/components/ui'; import Image from 'next/image'; // Mock data for Process Steps (full 6 steps) const PROCESS_STEPS = [ { title: 'Discovery', description: 'We deep-dive into your current infrastructure, workloads, and pain points.', youDo: 'Share access to cloud billing, architecture docs, and team interviews.', weDo: 'Analyze costs, identify waste, and map technical dependencies.', }, { title: 'Shadow & Map', description: 'We observe how your teams actually work and map desire paths.', youDo: 'Participate in workflow observations and workshops.', weDo: 'Document real workflows, identify automation opportunities, and draft the future state.', }, { title: 'Architect', description: 'We design a tailored, owned infrastructure solution.', youDo: 'Review and approve the proposed architecture and migration plan.', weDo: 'Specify hardware, select software stack, and design for performance and cost.', }, { title: 'Pilot', description: 'We build and test a critical component in the new environment.', youDo: 'Provide feedback on performance, usability, and integration.', weDo: 'Deploy, test, and iterate on the pilot component with your team.', }, { title: 'Migrate', description: 'We execute the planned migration with zero downtime.', youDo: 'Validate functionality and performance post-migration.', weDo: 'Cutover workloads, decommission old systems, and optimize the new stack.', }, { title: 'Operate', description: 'We manage the infrastructure, you focus on your core business.', youDo: 'Use the system and provide ongoing feedback for improvements.', weDo: 'Monitor, maintain, upgrade, and support the infrastructure 24/7.', }, ]; export default function ProcessPage() { return (
{/* Hero Section – distinct gradient band to differentiate from Solutions */}
Desire Paths Zero-Downtime Migration SRE-Managed

Our Process

A six-step path from audit to steady-state operations—minimizing retraining, maximizing savings.

{/* Process Diagram (optional image placeholder) */} Process diagram
Six-step migration process diagram
{/* Process Steps with phase legend */} {/* Phase legend */}
Phase 1
Discover & Map
Steps 1–2
Phase 2
Design & Pilot
Steps 3–4
Phase 3
Migrate & Operate
Steps 5–6
{/* Deliverables */}

Key Deliverables

Architecture Blueprint Hardware spec, network plan, security model, and service layout mapped to your workloads. Migration Plan Sequenced cutover with rollback points, data move playbooks, and testing gates. Runbook & SLOs Operability docs, monitoring dashboards, on-call rotations, and measurable service objectives.
{/* Engagement Model */}
Embedded With You

Weekly working sessions, async updates, and direct engineer-to-engineer channels.

We map desire paths, automate toil, and keep your stack familiar.

Support & Ops

24/7 monitoring, upgrades, and incident response handled by our SREs.

You own the hardware and data; we keep it healthy and fast.

{/* Final CTA */}
); }