Description of my image

Why am I building the V2 JPL Open Source Rover?

I Learned so much buildiung the first one

And a bit of text for context

smaller heading

  • one thing
  • another
export async function generateStaticParams() {
  const posts = await getPostsMeta();

  if (!posts) return []

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