Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/page-section.md
1# PageSection23A responsive section for your pages.45## Key Props67- `title`: to set the title of the section.8- `description`: to set the description of the section.9- `headline`: to set the headline of the section.10- `icon`: to set the icon of the section.11- `features`: to display a list of [PageFeature](/docs/components/page-feature) under the description as an array of objects with the following properties:1213- `title?: string`{lang="ts-type"}14- `description?: string`{lang="ts-type"}15- `icon?: string`{lang="ts-type"}16- `orientation?: 'horizontal' | 'vertical'`{lang="ts-type"}1718You can pass any property from the [Link](/docs/components/link#props) component such as `to`, `target`, etc.1920- `links`: to display a list of [Button](/docs/components/button) under the description.21- `orientation`: to change the orientation with the default slot.22- `reverse`: to reverse the orientation of the default slot.2324## Usage2526```vue27<UPageSection28<!-- props here -->29/>30```31