import Head from 'next/head' interface MetaHeadProps { title: string description?: string | null hero?: string | null } export function MetaHead({ title, description, hero }: MetaHeadProps) { const TITLE = `${title} - tldraw docs` return (