interface SEOProps { title: string description?: string image?: string url?: string } export function SEO({ title, description, image, url }: SEOProps) { const fullUrl = url && !url.startsWith('http') ? `${window.location.origin}${url}` : url const fullImage = image && !image.startsWith('http') ? `${window.location.origin}${image}` : image return ( <> {title} {description && } {description && } {fullImage && } {fullUrl && } {description && } {fullImage && } ) }