type WorkArea = {
title: string;
stack: readonly string[];
};
export const areas: readonly WorkArea[] = [
{
title: 'Platform and product engineering',
stack: ['TypeScript', 'React', 'Next.js', 'Hono', 'PostgreSQL', 'Drizzle ORM'],
},
{
title: 'Edge infrastructure',
stack: ['Cloudflare Workers', 'Durable Objects', 'D1', 'R2', 'Queues', 'Hyperdrive'],
},
{
title: 'Email delivery and deliverability',
stack: ['SMTP', 'SPF, DKIM and DMARC', 'Inbound parsing', 'Deliverability reporting'],
},
{
title: 'Data, analytics and conversion',
stack: ['Google Analytics', 'Conversion rate optimisation', 'PostgreSQL', 'Reporting'],
},
{
title: 'Automation and integration',
stack: ['Python', 'Cloudflare Workers', 'Queues', 'CRM integration', 'Ansible'],
},
{
title: 'Technical direction',
stack: ['Architecture', 'Code review', 'Monorepos', 'CI and release process'],
},
];