Published by January 21, 2025 · Reading time 1 minutes · Created by hyrun
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:
I love reading.
Me too.