Page() — ui Function Reference
Architecture documentation for the Page() function in page.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 0a96a9bc_f3a0_71c5_d360_2b099184218c["Page()"] 4ed9c7b3_f00f_5768_d768_4ed0547dc454["page.tsx"] 0a96a9bc_f3a0_71c5_d360_2b099184218c -->|defined in| 4ed9c7b3_f00f_5768_d768_4ed0547dc454 style 0a96a9bc_f3a0_71c5_d360_2b099184218c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/new-york-v4/blocks/sidebar-12/page.tsx lines 15–44
export default function Page() {
return (
<SidebarProvider>
<AppSidebar />
<SidebarInset>
<header className="bg-background sticky top-0 flex h-16 shrink-0 items-center gap-2 border-b px-4">
<SidebarTrigger className="-ml-1" />
<Separator
orientation="vertical"
className="mr-2 data-[orientation=vertical]:h-4"
/>
<Breadcrumb>
<BreadcrumbList>
<BreadcrumbItem>
<BreadcrumbPage>October 2024</BreadcrumbPage>
</BreadcrumbItem>
</BreadcrumbList>
</Breadcrumb>
</header>
<div className="flex flex-1 flex-col gap-4 p-4">
<div className="grid auto-rows-min gap-4 md:grid-cols-5">
{Array.from({ length: 20 }).map((_, i) => (
<div key={i} className="bg-muted/50 aspect-square rounded-xl" />
))}
</div>
</div>
</SidebarInset>
</SidebarProvider>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does Page() do?
Page() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/blocks/sidebar-12/page.tsx.
Where is Page() defined?
Page() is defined in apps/v4/registry/new-york-v4/blocks/sidebar-12/page.tsx at line 15.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free