From 6927aea0f2f75921b1f999a0065f622a08444ec8 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Wed, 9 Sep 2026 14:32:33 -0700 Subject: [PATCH] fix(content): use a raster customer story sharing image --- apps/sim/content/customers/exp-realty/index.mdx | 4 ++-- apps/sim/lib/content/og-image.test.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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')