import { generateMetaTags, generateJsonLd } from '@adrper79-dot/seo';
const metaTags = generateMetaTags({
title: 'FocusBro — Deep Work for ADHD Professionals',
description: 'Stay in the zone for 2x longer with science-backed focus sessions.',
url: 'https://focusbro.app',
image: 'https://focusbro.app/og-image.png',
siteName: 'FocusBro',
});
const jsonLd = generateJsonLd({
'@context': 'https://schema.org',
'@type': 'SoftwareApplication',
'name': 'FocusBro',
'applicationCategory': 'ProductivityApplication',
});
return c.html(`<!DOCTYPE html><html><head>${metaTags}${jsonLd}</head><body>...</body></html>`);