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 a709cabb_ef4d_6685_482d_c64991455b64["page.tsx"] 153f27cd_fbfb_31aa_3ffa_20b4605d6747["app-sidebar"] a709cabb_ef4d_6685_482d_c64991455b64 --> 153f27cd_fbfb_31aa_3ffa_20b4605d6747 295f4823_122a_c4da_7a1e_cccc0e86bebf["site-header"] a709cabb_ef4d_6685_482d_c64991455b64 --> 295f4823_122a_c4da_7a1e_cccc0e86bebf 742f06fb_c1e8_243e_1fc4_8b1cf11704c2["sidebar"] a709cabb_ef4d_6685_482d_c64991455b64 --> 742f06fb_c1e8_243e_1fc4_8b1cf11704c2 style a709cabb_ef4d_6685_482d_c64991455b64 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { AppSidebar } from "@/registry/default/blocks/sidebar-16/components/app-sidebar"
import { SiteHeader } from "@/registry/default/blocks/sidebar-16/components/site-header"
import { SidebarInset, SidebarProvider } from "@/registry/default/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(theme(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="aspect-video rounded-xl bg-muted/50" />
<div className="aspect-video rounded-xl bg-muted/50" />
<div className="aspect-video rounded-xl bg-muted/50" />
</div>
<div className="min-h-[100vh] flex-1 rounded-xl bg-muted/50 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 deprecated/www/__registry__/default/blocks/sidebar-16/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/default/blocks/sidebar-16).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free