Description of my image

Walkthrough from inspriation to flying model

  • one thing
  • another

and that was it

cat somefile.dat > /dev/null
export async function generateStaticParams() {
  const posts = await getPostsMeta();

  if (!posts) return []

  return posts.map((post) => ({
    slug: post.slug,
  }));
}