Home / File/ page.tsx — ui Source File

page.tsx — ui Source File

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

File tsx ComponentRegistry ChartRegistry 3 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  dbd3a9ef_10e1_e5cf_6eb4_1e28f537d69f["page.tsx"]
  e5821a6f_d6a4_b2fc_6f31_96f37b5268c5["add-task-form"]
  dbd3a9ef_10e1_e5cf_6eb4_1e28f537d69f --> e5821a6f_d6a4_b2fc_6f31_96f37b5268c5
  48aa67c0_44d3_33c4_8314_e8417f6c8129["tasks-list"]
  dbd3a9ef_10e1_e5cf_6eb4_1e28f537d69f --> 48aa67c0_44d3_33c4_8314_e8417f6c8129
  95a7752f_4b97_5bde_5d7d_fca03536ac35["card"]
  dbd3a9ef_10e1_e5cf_6eb4_1e28f537d69f --> 95a7752f_4b97_5bde_5d7d_fca03536ac35
  style dbd3a9ef_10e1_e5cf_6eb4_1e28f537d69f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { AddTaskForm } from "@/registry/new-york/blocks/app-01/components/add-task-form"
import { TasksList } from "@/registry/new-york/blocks/app-01/components/tasks-list"
import {
  Card,
  CardContent,
  CardFooter,
  CardHeader,
  CardTitle,
} from "@/registry/new-york/ui/card"

export default function AppPage() {
  return (
    <div className="h-screen flex flex-col items-center justify-center">
      <Card className="w-full max-w-md">
        <CardHeader>
          <CardTitle>Add Task</CardTitle>
        </CardHeader>
        <CardContent>
          <TasksList />
        </CardContent>
        <CardFooter>
          <AddTaskForm />
        </CardFooter>
      </Card>
    </div>
  )
}

Subdomains

Functions

Dependencies

  • add-task-form
  • card
  • tasks-list

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): AppPage.
What does page.tsx depend on?
page.tsx imports 3 module(s): add-task-form, card, tasks-list.
Where is page.tsx in the architecture?
page.tsx is located at deprecated/www/__registry__/new-york/blocks/app-01/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/new-york/blocks/app-01).

Analyze Your Own Codebase

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

Try Supermodel Free