"use client"; import { motion } from "framer-motion"; import { ShieldCheck, Zap, Globe, Cpu, Terminal } from "lucide-react"; import Link from "next/link"; const CAPABILITIES = [ { title: "Cloud Orchestration", icon: , skills: ["Kubernetes", "Docker", "Cloud Run", "Multi-Region VPC"], description: "Managing containerized application lifecycles and software-defined networks to ensure high availability and regional data sovereignty.", }, { title: "Provisioning & IaC", icon: , skills: ["Terraform", "Makefiles", "Shell Scripting", "Versioned State"], description: "Defining environment state through version-controlled configurations to ensure reproducible, predictable, and audit-ready cloud resources.", }, { title: "Deployment Pipelines", icon: , skills: [ "GitHub Actions", "Woodpecker CI", "Fastlane", "Automated Testing", ], description: "Architecting CI/CD workflows that bridge the gap between local development and production environments with zero-downtime strategies.", }, { title: "Governance & Security", icon: , skills: ["NHS DSPT", "Cyber Essentials", "DPIA", "Secret Management"], description: "Hardening infrastructure and delivery pipelines to maintain alignment with UK health data standards and government security frameworks.", }, ]; export default function InfrastructurePage() { return (
{/* Tightened Header */}

Infrastructure and Operationss

Technical manifest of experiences in cloud orchestration, deployment pipelines, and security frameworks designed for resilient services in regulated environments.

{/* Tightened Specification List */}
{CAPABILITIES.map((cap, i) => (
{cap.icon}

{cap.title}

{cap.description}

{cap.skills.map((skill) => ( {`// ${skill}`} ))}
))}
{/* Corrected Alignment Featured Section */}

Selected Case Study

Medical-Grade Architecture Analysis

An examination of a multi-cloud environment built to satisfy UK Cyber Essentials and NHS DSPT standards, focusing on data residency and infrastructure-level security.

Examine Logic
); }