Home / File/ page.tsx — ui Source File

page.tsx — ui Source File

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

File tsx ComponentRegistry ChartRegistry 7 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  168157d8_620b_9822_3341_b74e91aeb5c6["page.tsx"]
  fd3d627f_2111_bb9f_c602_d7a2ccdd26be["./data.json"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> fd3d627f_2111_bb9f_c602_d7a2ccdd26be
  5248656c_c657_eab7_c382_00f05587377d["app-sidebar"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> 5248656c_c657_eab7_c382_00f05587377d
  a1160372_c5a4_e5dc_430e_5a6c435700ef["chart-area-interactive"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> a1160372_c5a4_e5dc_430e_5a6c435700ef
  ef2fe3df_8c7e_9a74_7f1d_e7fcea03bbef["data-table"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> ef2fe3df_8c7e_9a74_7f1d_e7fcea03bbef
  ff8bc666_8547_909d_bb11_ae15ae52b962["section-cards"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> ff8bc666_8547_909d_bb11_ae15ae52b962
  079c5354_24df_c246_991a_319fe88c216a["site-header"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> 079c5354_24df_c246_991a_319fe88c216a
  6ff5c02b_2b25_4633_4ccd_fd28f2f55862["sidebar"]
  168157d8_620b_9822_3341_b74e91aeb5c6 --> 6ff5c02b_2b25_4633_4ccd_fd28f2f55862
  style 168157d8_620b_9822_3341_b74e91aeb5c6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { AppSidebar } from "@/registry/new-york/blocks/dashboard-01/components/app-sidebar"
import { ChartAreaInteractive } from "@/registry/new-york/blocks/dashboard-01/components/chart-area-interactive"
import { DataTable } from "@/registry/new-york/blocks/dashboard-01/components/data-table"
import { SectionCards } from "@/registry/new-york/blocks/dashboard-01/components/section-cards"
import { SiteHeader } from "@/registry/new-york/blocks/dashboard-01/components/site-header"
import { SidebarInset, SidebarProvider } from "@/registry/new-york/ui/sidebar"

import data from "./data.json"

export default function Page() {
  return (
    <SidebarProvider>
      <AppSidebar variant="inset" />
      <SidebarInset>
        <SiteHeader />
        <div className="flex flex-1 flex-col">
          <div className="@container/main flex flex-1 flex-col gap-2">
            <div className="flex flex-col gap-4 py-4 md:gap-6 md:py-6">
              <SectionCards />
              <div className="px-4 lg:px-6">
                <ChartAreaInteractive />
              </div>
              <DataTable data={data} />
            </div>
          </div>
        </div>
      </SidebarInset>
    </SidebarProvider>
  )
}

Subdomains

Functions

Dependencies

  • ./data.json
  • app-sidebar
  • chart-area-interactive
  • data-table
  • section-cards
  • sidebar
  • site-header

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 7 module(s): ./data.json, app-sidebar, chart-area-interactive, data-table, section-cards, sidebar, site-header.
Where is page.tsx in the architecture?
page.tsx is located at deprecated/www/__registry__/new-york/blocks/dashboard-01/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/new-york/blocks/dashboard-01).

Analyze Your Own Codebase

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

Try Supermodel Free