lorem ipsumq
Start here
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: "DyingStar",
url: "https://DyingStar.com",
},
};
}
Title 2
I love reading.
Title 3
Me too.