lorem ipsum
export async function generateMetadata({
params,
}: PostParams): Promise<Metadata> {
const post = await getCurrentPost(params.slug);
if (!post) {
notFound();
}
return {
title: post.attributes.title,
description: post.attributes.description,
keywords: post.attributes.keywords,
authors: {
name: "Melvynx",
url: "https://melvynx.com",
},
};
}
I love reading.
Me too.