Skip to content

Commit 06c3260

Browse files
committed
chore(blog): remove unused buildBlogJsonLd export and wordCount schema field
1 parent be79519 commit 06c3260

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

apps/sim/lib/blog/schema.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ export const BlogFrontmatterSchema = z
3535
)
3636
.optional(),
3737
canonical: z.string().url(),
38-
wordCount: z.number().int().positive().optional(),
3938
draft: z.boolean().default(false),
4039
featured: z.boolean().default(false),
4140
})

apps/sim/lib/blog/seo.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,3 @@ export function buildCollectionPageJsonLd() {
169169
},
170170
}
171171
}
172-
173-
export function buildBlogJsonLd() {
174-
return {
175-
'@context': 'https://schema.org',
176-
'@type': 'Blog',
177-
name: 'Sim Blog',
178-
url: 'https://sim.ai/blog',
179-
description: 'Announcements, insights, and guides for building AI agent workflows.',
180-
}
181-
}

0 commit comments

Comments
 (0)