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

Source

// File path: src/app/examples/(marketing)/about/page.tsx
    // URL:       /examples/about

export default function Page() {
                return <h1>About bext</h1>;
}