page.tsx — ui Source File
Architecture documentation for page.tsx, a tsx file in the ui codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 9060b704_d884_84c8_5330_79b03a3594cd["page.tsx"] 109b7992_8ac0_6d7f_00c9_cdb0248491dd["app-sidebar"] 9060b704_d884_84c8_5330_79b03a3594cd --> 109b7992_8ac0_6d7f_00c9_cdb0248491dd 285ea8e2_7ef3_0056_cc80_0658db3bdb26["site-header"] 9060b704_d884_84c8_5330_79b03a3594cd --> 285ea8e2_7ef3_0056_cc80_0658db3bdb26 1fee781a_1910_afaa_bb29_21305eb0ae61["sidebar"] 9060b704_d884_84c8_5330_79b03a3594cd --> 1fee781a_1910_afaa_bb29_21305eb0ae61 style 9060b704_d884_84c8_5330_79b03a3594cd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { AppSidebar } from "@/registry/bases/radix/blocks/sidebar-16/components/app-sidebar"
import { SiteHeader } from "@/registry/bases/radix/blocks/sidebar-16/components/site-header"
import {
SidebarInset,
SidebarProvider,
} from "@/registry/bases/radix/ui/sidebar"
export const iframeHeight = "800px"
export const description = "A sidebar with a header and a search form."
export default function Page() {
return (
<div className="[--header-height:calc(--spacing(14))]">
<SidebarProvider className="flex flex-col">
<SiteHeader />
<div className="flex flex-1">
<AppSidebar />
<SidebarInset>
<div className="flex flex-1 flex-col gap-4 p-4">
<div className="grid auto-rows-min gap-4 md:grid-cols-3">
<div className="bg-muted/50 aspect-video rounded-xl" />
<div className="bg-muted/50 aspect-video rounded-xl" />
<div className="bg-muted/50 aspect-video rounded-xl" />
</div>
<div className="bg-muted/50 min-h-screen flex-1 rounded-xl md:min-h-min" />
</div>
</SidebarInset>
</div>
</SidebarProvider>
</div>
)
}
Domain
Subdomains
Functions
Dependencies
- app-sidebar
- sidebar
- site-header
Source
Frequently Asked Questions
What does page.tsx do?
page.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in page.tsx?
page.tsx defines 1 function(s): Page.
What does page.tsx depend on?
page.tsx imports 3 module(s): app-sidebar, sidebar, site-header.
Where is page.tsx in the architecture?
page.tsx is located at apps/v4/registry/bases/radix/blocks/sidebar-16/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/bases/radix/blocks/sidebar-16).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free