Pricing (route group)
Lives at src/app/examples/(marketing)/pricing/page.tsx, served at /examples/pricing. Same (marketing) group as the About page — neither gets a prefix in its URL.
Tip
Route groups have no effect on static routing: generateStaticParams, generateMetadata, and metadata exports work exactly the same inside a group as they do outside one.
Group siblings
- /examples/about
- /examples/pricing — this page
// File path: src/app/examples/(marketing)/pricing/page.tsx
// URL: /examples/pricing
export default function Page() {
return <h1>Pricing</h1>;
}