--- import { ClientRouter } from 'astro:transitions' import Analytics from '@vercel/analytics/astro' import '../styles/global.css' interface Props { title: string description?: string ogImage?: string noindex?: boolean } const { title, description = 'Comfy is the AI creation engine for visual professionals who demand control.', ogImage = '/og-default.png', noindex = false, } = Astro.props const siteBase = Astro.site ?? 'https://comfy.org' const canonicalURL = new URL(Astro.url.pathname, siteBase) const ogImageURL = new URL(ogImage, siteBase) const locale = Astro.currentLocale ?? 'en' const gtmId = 'GTM-NP9JM6K7' const gtmEnabled = import.meta.env.PROD const organizationJsonLd = { '@context': 'https://schema.org', '@type': 'Organization', name: 'Comfy Org', url: 'https://comfy.org', logo: 'https://comfy.org/favicon.svg', sameAs: [ 'https://github.com/comfyanonymous/ComfyUI', 'https://discord.gg/comfyorg', 'https://x.com/comaboratory', 'https://reddit.com/r/comfyui', 'https://linkedin.com/company/comfyorg', 'https://instagram.com/comfyorg', ], } const websiteJsonLd = { '@context': 'https://schema.org', '@type': 'WebSite', name: 'Comfy', url: 'https://comfy.org', } ---
{noindex && }