Page
Top-level page container with layout constraints.
Page Title
Page content goes here
import { Page } from "ui-lab-components";
export function Example() {
return (
<Page maxWidth="1400px" padding="md" centered>
<div className="space-y-4">
<h1>Page Title</h1>
<p>Page content goes here</p>
</div>
</Page>
);
}