page.tsx — ui Source File
Architecture documentation for page.tsx, a tsx file in the ui codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 1ff86488_ec71_c6d0_fd96_fb3544350fcb["page.tsx"] 4d169b06_5217_fd6d_370b_b6febe909df5["app-sidebar"] 1ff86488_ec71_c6d0_fd96_fb3544350fcb --> 4d169b06_5217_fd6d_370b_b6febe909df5 07986cfc_fcd6_a023_4225_355f24adb9e8["breadcrumb"] 1ff86488_ec71_c6d0_fd96_fb3544350fcb --> 07986cfc_fcd6_a023_4225_355f24adb9e8 f62242a3_a602_4828_25a4_56635bc469ef["separator"] 1ff86488_ec71_c6d0_fd96_fb3544350fcb --> f62242a3_a602_4828_25a4_56635bc469ef 742f06fb_c1e8_243e_1fc4_8b1cf11704c2["sidebar"] 1ff86488_ec71_c6d0_fd96_fb3544350fcb --> 742f06fb_c1e8_243e_1fc4_8b1cf11704c2 style 1ff86488_ec71_c6d0_fd96_fb3544350fcb fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { AppSidebar } from "@/registry/default/blocks/sidebar-09/components/app-sidebar"
import {
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
} from "@/registry/default/ui/breadcrumb"
import { Separator } from "@/registry/default/ui/separator"
import {
SidebarInset,
SidebarProvider,
SidebarTrigger,
} from "@/registry/default/ui/sidebar"
export default function Page() {
return (
<SidebarProvider
style={
{
"--sidebar-width": "350px",
} as React.CSSProperties
}
>
<AppSidebar />
<SidebarInset>
<header className="sticky top-0 flex shrink-0 items-center gap-2 border-b bg-background p-4">
<SidebarTrigger className="-ml-1" />
<Separator orientation="vertical" className="mr-2 h-4" />
<Breadcrumb>
<BreadcrumbList>
<BreadcrumbItem className="hidden md:block">
<BreadcrumbLink href="#">All Inboxes</BreadcrumbLink>
</BreadcrumbItem>
<BreadcrumbSeparator className="hidden md:block" />
<BreadcrumbItem>
<BreadcrumbPage>Inbox</BreadcrumbPage>
</BreadcrumbItem>
</BreadcrumbList>
</Breadcrumb>
</header>
<div className="flex flex-1 flex-col gap-4 p-4">
{Array.from({ length: 24 }).map((_, index) => (
<div
key={index}
className="aspect-video h-12 w-full rounded-lg bg-muted/50"
/>
))}
</div>
</SidebarInset>
</SidebarProvider>
)
}
Domain
Subdomains
Functions
Dependencies
- app-sidebar
- breadcrumb
- separator
- sidebar
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 4 module(s): app-sidebar, breadcrumb, separator, sidebar.
Where is page.tsx in the architecture?
page.tsx is located at deprecated/www/registry/default/blocks/sidebar-09/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/default/blocks/sidebar-09).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free