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
  33a0cfce_d227_92c3_17e5_2210bd72de4d["page.tsx"]
  07c3ecc8_df91_6658_dd0b_2475da522b1d["app-sidebar"]
  33a0cfce_d227_92c3_17e5_2210bd72de4d --> 07c3ecc8_df91_6658_dd0b_2475da522b1d
  0089aa91_83f4_f263_8dce_d1eac95a660c["nav-actions"]
  33a0cfce_d227_92c3_17e5_2210bd72de4d --> 0089aa91_83f4_f263_8dce_d1eac95a660c
  ae3635e3_d1ef_d848_ce80_aa7c696f0ec1["breadcrumb"]
  33a0cfce_d227_92c3_17e5_2210bd72de4d --> ae3635e3_d1ef_d848_ce80_aa7c696f0ec1
  b2c60dee_4ede_8485_a6b4_91c999cdc69f["separator"]
  33a0cfce_d227_92c3_17e5_2210bd72de4d --> b2c60dee_4ede_8485_a6b4_91c999cdc69f
  12632a83_ef01_5f03_4110_ed33d49893b7["sidebar"]
  33a0cfce_d227_92c3_17e5_2210bd72de4d --> 12632a83_ef01_5f03_4110_ed33d49893b7
  style 33a0cfce_d227_92c3_17e5_2210bd72de4d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { AppSidebar } from "@/registry/new-york-v4/blocks/sidebar-10/components/app-sidebar"
import { NavActions } from "@/registry/new-york-v4/blocks/sidebar-10/components/nav-actions"
import {
  Breadcrumb,
  BreadcrumbItem,
  BreadcrumbList,
  BreadcrumbPage,
} from "@/registry/new-york-v4/ui/breadcrumb"
import { Separator } from "@/registry/new-york-v4/ui/separator"
import {
  SidebarInset,
  SidebarProvider,
  SidebarTrigger,
} from "@/registry/new-york-v4/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 data-[orientation=vertical]: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="bg-muted/50 mx-auto h-24 w-full max-w-3xl rounded-xl" />
          <div className="bg-muted/50 mx-auto h-full w-full max-w-3xl rounded-xl" />
        </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 apps/v4/registry/new-york-v4/blocks/sidebar-10/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/blocks/sidebar-10).

Analyze Your Own Codebase

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

Try Supermodel Free