Home / File/ page.tsx — ui Source File

page.tsx — ui Source File

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

File tsx ComponentRegistry ChartRegistry 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  9e26d692_1ed2_21f1_eb0c_d0850341cc2f["page.tsx"]
  d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"]
  9e26d692_1ed2_21f1_eb0c_d0850341cc2f --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3
  ac1a41f5_13fd_231d_0b51_f34386216816["signup-form"]
  9e26d692_1ed2_21f1_eb0c_d0850341cc2f --> ac1a41f5_13fd_231d_0b51_f34386216816
  style 9e26d692_1ed2_21f1_eb0c_d0850341cc2f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { GalleryVerticalEnd } from "lucide-react"

import { SignupForm } from "@/registry/new-york-v4/blocks/signup-02/components/signup-form"

export default function SignupPage() {
  return (
    <div className="grid min-h-svh lg:grid-cols-2">
      <div className="flex flex-col gap-4 p-6 md:p-10">
        <div className="flex justify-center gap-2 md:justify-start">
          <a href="#" className="flex items-center gap-2 font-medium">
            <div className="bg-primary text-primary-foreground flex size-6 items-center justify-center rounded-md">
              <GalleryVerticalEnd className="size-4" />
            </div>
            Acme Inc.
          </a>
        </div>
        <div className="flex flex-1 items-center justify-center">
          <div className="w-full max-w-xs">
            <SignupForm />
          </div>
        </div>
      </div>
      <div className="bg-muted relative hidden lg:block">
        <img
          src="/placeholder.svg"
          alt="Image"
          className="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale"
        />
      </div>
    </div>
  )
}

Subdomains

Functions

Dependencies

  • lucide-react
  • signup-form

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): SignupPage.
What does page.tsx depend on?
page.tsx imports 2 module(s): lucide-react, signup-form.
Where is page.tsx in the architecture?
page.tsx is located at apps/v4/registry/new-york-v4/blocks/signup-02/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/blocks/signup-02).

Analyze Your Own Codebase

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

Try Supermodel Free