About bext (route group)
This page lives at src/app/examples/(marketing)/about/page.tsx but is
served at /examples/about. Folders wrapped in parens
are route groups — they exist for organization or
to share a layout without affecting the URL.
Sibling page in the same group
- /examples/about — this page
- /examples/pricing — sibling in
the same
(marketing)group
Source
// File path: src/app/examples/(marketing)/about/page.tsx
// URL: /examples/about
export default function Page() {
return <h1>About bext</h1>;
}