| 1 | export async function generateStaticParams() { |
| 2 | const posts = [ |
| 3 | { slug: "post-1" }, |
| 4 | { slug: "post-2" }, |
| 5 | { slug: "post-3" }, |
| 6 | ]; |
| 7 | |
| 8 | return posts.map((post) => ({ |
| 9 | slug: post.slug, |
| 10 | })) |
| 11 | } |
| 12 | |
| 13 | export default function Page() { |
| 14 | return <h1 className="text-xl font-medium text-gray-400/80">Checkout</h1>; |
| 15 | } |