{[["Automation", "Why my Playwright suite runs in a third of the time"], ["WordPress", "Core Web Vitals on a shared host, honestly"], ["AI", "The three AI tools I still open every week"]].map(([cat, title], i) => (
{cat}
{title}
Draft in progress
))}
);
}
function Contact() {
const S = window.SITE;
const [sent, setSent] = React.useState(false);
const submit = (e) => {
e.preventDefault();
const f = new FormData(e.target);
window.location.href = `mailto:${S.email}?subject=${encodeURIComponent("Project enquiry — " + (f.get("name") || ""))}&body=${encodeURIComponent(f.get("message") || "")}`;
setSent(true);
};
return (