@@ -3,6 +3,8 @@ import Link from 'next/link'
33import { Post } from 'src/types'
44import { getSortedPostsData } from 'src/lib/blog/posts'
55
6+ const OG_IMAGE_URL = 'https://www.maiachess.com/assets/og-maia.png'
7+
68export default function Blog ( { posts } : { posts : Post [ ] } ) {
79 return (
810 < >
@@ -20,11 +22,10 @@ export default function Blog({ posts }: { posts: Post[] }) {
2022 content = "Read the latest insights from the Maia Chess team about human-like chess AI, research updates, and platform developments."
2123 />
2224 < meta property = "og:type" content = "website" />
23- < meta property = "og:url" content = "https://maiachess.com/blog" />
24- < meta
25- property = "og:image"
26- content = "https://maiachess.com/maia-og-image.png"
27- />
25+ < meta property = "og:url" content = "https://www.maiachess.com/blog" />
26+ < meta property = "og:image" content = { OG_IMAGE_URL } />
27+ < meta property = "og:image:url" content = { OG_IMAGE_URL } />
28+ < meta property = "og:image:secure_url" content = { OG_IMAGE_URL } />
2829 < meta property = "og:site_name" content = "Maia Chess" />
2930
3031 { /* Twitter Card */ }
@@ -34,15 +35,13 @@ export default function Blog({ posts }: { posts: Post[] }) {
3435 name = "twitter:description"
3536 content = "Read the latest insights from the Maia Chess team about human-like chess AI, research updates, and platform developments."
3637 />
37- < meta
38- name = "twitter:image"
39- content = "https://maiachess.com/maia-og-image.png"
40- />
38+ < meta name = "twitter:image" content = { OG_IMAGE_URL } />
39+ < meta name = "twitter:image:src" content = { OG_IMAGE_URL } />
4140
4241 { /* Additional SEO */ }
4342 < meta name = "author" content = "Maia Chess Team" />
4443 < meta name = "robots" content = "index, follow" />
45- < link rel = "canonical" href = "https://maiachess.com/blog" />
44+ < link rel = "canonical" href = "https://www. maiachess.com/blog" />
4645 </ Head >
4746 < div className = "relative mx-auto flex h-full w-[90%] flex-col items-start justify-center gap-5 py-[10%] md:py-[2%]" >
4847 < h1 className = "text-4xl font-bold" > Blog</ h1 >
0 commit comments