SEO blogpost

This commit is contained in:
2026-08-05 19:39:22 +02:00
parent d7432fa65c
commit cf05e60251
53 changed files with 10592 additions and 125 deletions

View File

@@ -0,0 +1,22 @@
import { Metadata } from 'next'
import { blogPosts } from '@/lib/blogPosts'
import { BlogPostTemplate } from '@/components/blog/BlogPostTemplate'
const post = blogPosts['which-plant-is-this-guide']
export const metadata: Metadata = {
title: post.metaTitle,
description: post.metaDescription,
alternates: {
canonical: post.canonical,
},
openGraph: {
title: post.metaTitle,
description: post.metaDescription,
images: [{ url: post.heroImage }],
},
}
export default function WhichPlantIsThisGuidePage() {
return <BlogPostTemplate post={post} />
}