···11+---
22+title: Page
33+description: A flexible page layout component with small and large variants for headers, titles, and sticky headers/footers.
44+---
55+66+import { PropDocs } from "../../../lib/PropDocs";
77+import { Example } from "../../../lib/Example";
88+import { Basic } from "../../../examples/page/basic";
99+import { LargeVariant } from "../../../examples/page/large-variant";
1010+import { WithIcon } from "../../../examples/page/with-icon";
1111+1212+<Example src={Basic} />
1313+1414+## Installation
1515+1616+Run the following command to add the page component to your project.
1717+1818+```bash
1919+pnpm hip install page
2020+```
2121+2222+## Props
2323+2424+<PropDocs
2525+ components={[
2626+ "PageRoot",
2727+ "PageHeader",
2828+ "PageBackLink",
2929+ "PageTitle",
3030+ "PageDescription",
3131+ "PageActions",
3232+ "PageIcon",
3333+ "PageStickyHeader",
3434+ "PageStickyFooter",
3535+ ]}
3636+/>
3737+3838+## Features
3939+4040+### Small Variant
4141+4242+A narrow page layout (max-width 880px) for focused content like forms or detail views.
4343+4444+<Example src={Basic} />
4545+4646+### Large Variant
4747+4848+A full-width page layout with support for icons, descriptions, and action buttons in the header.
4949+5050+<Example src={LargeVariant} />
5151+5252+### With Icon
5353+5454+Add an icon to the large page header for visual hierarchy.
5555+5656+<Example src={WithIcon} />
5757+5858+## Related Components
5959+6060+- [Flex](/docs/components/layout/flex) - For flexible layouts within page content
6161+- [Footer](/docs/components/navigation/footer) - For page footers
6262+- [Header Layout](/docs/components/navigation/header-layout) - For app-level headers
+2-1
apps/docs/src/examples/autocomplete/basic.tsx
···11"use client";
2233+import { useFilter } from "react-aria-components";
44+35import { AutocompleteInput } from "@/components/autocomplete";
46import { ListBoxItem } from "@/components/listbox";
55-import { useFilter } from "react-aria-components";
6778const options = [
89 { id: "apple", handle: "Apple" },