diff --git a/apps/sim/content/customers/exp-realty/index.mdx b/apps/sim/content/customers/exp-realty/index.mdx index 361e182bad8..85f35d1ba36 100644 --- a/apps/sim/content/customers/exp-realty/index.mdx +++ b/apps/sim/content/customers/exp-realty/index.mdx @@ -5,8 +5,8 @@ description: Bringing complex real estate operations into governed AI workflows date: 2026-09-05 authors: [sim] tags: [AI workflows, Real estate] -ogImage: /landing/logos/exp-realty.svg -ogAlt: eXp Realty +ogImage: /landing/customers/exp-beach-house.jpg +ogAlt: A modern beach house overlooking the ocean canonical: https://www.sim.ai/customers/exp-realty draft: true technical: false diff --git a/apps/sim/lib/content/og-image.test.ts b/apps/sim/lib/content/og-image.test.ts index 998cf3ff967..3b9b2aaf2fb 100644 --- a/apps/sim/lib/content/og-image.test.ts +++ b/apps/sim/lib/content/og-image.test.ts @@ -22,7 +22,7 @@ const CRAWLER_SAFE_FORMATS = ['jpeg', 'png', 'webp', 'gif'] function collectOgImages(): { slug: string; ogImage: string }[] { const entries: { slug: string; ogImage: string }[] = [] - for (const dir of ['content/blog', 'content/library']) { + for (const dir of ['content/blog', 'content/library', 'content/customers']) { if (!fs.existsSync(dir)) continue for (const slug of fs.readdirSync(dir)) { const mdxPath = path.join(dir, slug, 'index.mdx')