Home / File/ page.tsx — ui Source File

page.tsx — ui Source File

Architecture documentation for page.tsx, a tsx file in the ui codebase. 5 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 5 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  f8348cc4_1216_75a2_7f81_f4e36b835e29["page.tsx"]
  4ab6a15d_4440_c580_2256_44fe42f11b03["app-sidebar"]
  f8348cc4_1216_75a2_7f81_f4e36b835e29 --> 4ab6a15d_4440_c580_2256_44fe42f11b03
  336dfdfa_d436_c2e5_ff22_a7e405997fd3["nav-actions"]
  f8348cc4_1216_75a2_7f81_f4e36b835e29 --> 336dfdfa_d436_c2e5_ff22_a7e405997fd3
  07986cfc_fcd6_a023_4225_355f24adb9e8["breadcrumb"]
  f8348cc4_1216_75a2_7f81_f4e36b835e29 --> 07986cfc_fcd6_a023_4225_355f24adb9e8
  f62242a3_a602_4828_25a4_56635bc469ef["separator"]
  f8348cc4_1216_75a2_7f81_f4e36b835e29 --> f62242a3_a602_4828_25a4_56635bc469ef
  742f06fb_c1e8_243e_1fc4_8b1cf11704c2["sidebar"]
  f8348cc4_1216_75a2_7f81_f4e36b835e29 --> 742f06fb_c1e8_243e_1fc4_8b1cf11704c2
  style f8348cc4_1216_75a2_7f81_f4e36b835e29 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { AppSidebar } from "@/registry/default/blocks/sidebar-10/components/app-sidebar"
import { NavActions } from "@/registry/default/blocks/sidebar-10/components/nav-actions"
import {
  Breadcrumb,
  BreadcrumbItem,
  BreadcrumbList,
  BreadcrumbPage,
} 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>
      <AppSidebar />
      <SidebarInset>
        <header className="flex h-14 shrink-0 items-center gap-2">
          <div className="flex flex-1 items-center gap-2 px-3">
            <SidebarTrigger />
            <Separator orientation="vertical" className="mr-2 h-4" />
            <Breadcrumb>
              <BreadcrumbList>
                <BreadcrumbItem>
                  <BreadcrumbPage className="line-clamp-1">
                    Project Management & Task Tracking
                  </BreadcrumbPage>
                </BreadcrumbItem>
              </BreadcrumbList>
            </Breadcrumb>
          </div>
          <div className="ml-auto px-3">
            <NavActions />
          </div>
        </header>
        <div className="flex flex-1 flex-col gap-4 px-4 py-10">
          <div className="mx-auto h-24 w-full max-w-3xl rounded-xl bg-muted/50" />
          <div className="mx-auto h-full w-full max-w-3xl rounded-xl bg-muted/50" />
        </div>
      </SidebarInset>
    </SidebarProvider>
  )
}

Subdomains

Functions

Dependencies

  • app-sidebar
  • breadcrumb
  • nav-actions
  • separator
  • sidebar

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 5 module(s): app-sidebar, breadcrumb, nav-actions, separator, sidebar.
Where is page.tsx in the architecture?
page.tsx is located at deprecated/www/__registry__/default/blocks/sidebar-10/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/default/blocks/sidebar-10).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free