Files
Greenlens/greenlns-landing/app/blog/which-plant-is-this-guide/page.tsx
2026-08-05 19:39:22 +02:00

23 lines
576 B
TypeScript

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} />
}