Logo
Draft

Some post demo

Published by January 21, 2025 · Reading time 1 minutes · Created by Nate

lorem ipsum

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: "Melvynx",
      url: "https://melvynx.com",
    },
  };
}

Title 2

I love reading.

Title 3

Me too.