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 0603da3e_69fb_b0c7_c04d_9d543abc1a24["page.tsx"] dd4c41ee_bc07_aa49_0137_3e1481b4fab6["app-sidebar"] 0603da3e_69fb_b0c7_c04d_9d543abc1a24 --> dd4c41ee_bc07_aa49_0137_3e1481b4fab6 ae52a5f6_67af_c18b_d247_4bcf18ea9837["breadcrumb"] 0603da3e_69fb_b0c7_c04d_9d543abc1a24 --> ae52a5f6_67af_c18b_d247_4bcf18ea9837 0ef877d6_b768_4222_bd20_50d875ac5e58["separator"] 0603da3e_69fb_b0c7_c04d_9d543abc1a24 --> 0ef877d6_b768_4222_bd20_50d875ac5e58 6ff5c02b_2b25_4633_4ccd_fd28f2f55862["sidebar"] 0603da3e_69fb_b0c7_c04d_9d543abc1a24 --> 6ff5c02b_2b25_4633_4ccd_fd28f2f55862 style 0603da3e_69fb_b0c7_c04d_9d543abc1a24 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { AppSidebar } from "@/registry/new-york/blocks/sidebar-05/components/app-sidebar"
import {
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
} from "@/registry/new-york/ui/breadcrumb"
import { Separator } from "@/registry/new-york/ui/separator"
import {
SidebarInset,
SidebarProvider,
SidebarTrigger,
} from "@/registry/new-york/ui/sidebar"
export default function Page() {
return (
<SidebarProvider>
<AppSidebar />
<SidebarInset>
<header className="flex h-16 shrink-0 items-center gap-2 border-b px-4">
<SidebarTrigger className="-ml-1" />
<Separator orientation="vertical" className="mr-2 h-4" />
<Breadcrumb>
<BreadcrumbList>
<BreadcrumbItem className="hidden md:block">
<BreadcrumbLink href="#">
Building Your Application
</BreadcrumbLink>
</BreadcrumbItem>
<BreadcrumbSeparator className="hidden md:block" />
<BreadcrumbItem>
<BreadcrumbPage>Data Fetching</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-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>
</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__/new-york/blocks/sidebar-05/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/new-york/blocks/sidebar-05).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free