rewriting jweidesigns.com with next 13 app dir today some thoughts:

type BlogSlugPageProps = {

params: { slug: string };

};

  

export default function BlogSlugPage({ params }: BlogSlugPageProps) {

const slug = params.slug;

  

return <>Slug page | {slug}</>;

}

turns out this the more informative doc that explains how route groups work https://nextjs.org/docs/app/building-your-application/routing/route-groups