/* About — magazine-style team layout, vibrant tints */ function About() { const team = [ { name: "Sonal", role: "Engineering, hosting & reliability", bio: "Ten years building and operating production systems at Amazon Web Services and Red Hat. Sonal handles the parts of a website that should never break - hosting, backups, security, and the bits behind the scenes that keep your site online while you sleep.", meta: [ { label: "Based in", value: "Dublin, Ireland" }, { label: "Background", value: "AWS · Red Hat · Kubernetes" }, { label: "Focus", value: "Reliability · hosting · operations" }, ], photo: "about-sonal.png", tint: "#0F8C5F", soft: "#DCFCE7", }, { name: "Shatadru", role: "Design, front-end & systems", bio: "Cloud infrastructure engineer with 12 years of building systems that don't break. By day he designs Kubernetes platforms at Workday. For your website, he brings that same engineering discipline - fast, clean, and built to last.", bio2: "Works closely with you on tone, photography, and the structure that helps customers find what they need.", meta: [ { label: "Portfolio", value: "shatadru.in", link: "https://shatadru.in" }, { label: "Background", value: "Workday · Kubernetes · Cloud platforms" }, { label: "Focus", value: "Web design · front-end" }, ], photo: "about-shatadru.png", tint: "#E68A19", soft: "#FEF3C7", }, ]; return (
The studio

A two-person studio.

Engineers by trade. We design, build, and look after websites for small businesses across Ireland and the EU.

{team.map((m, i) => (
0{i + 1}
{m.name} {m.role}

{m.bio}

{m.bio2 &&

{m.bio2}

}
{m.meta.map(d => (
{d.label}
{d.link ? {d.value} : d.value}
))}
))}
); } window.About = About;