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 UIPrimitives 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  21b275da_5d48_2bac_6d26_0c8532d7f8ed["page.tsx"]
  01634208_21ad_54f3_f2a5_65ca4d3727ca["login-form"]
  21b275da_5d48_2bac_6d26_0c8532d7f8ed --> 01634208_21ad_54f3_f2a5_65ca4d3727ca
  de6fac54_74ca_6c25_8f8b_d1ba3287dbf2["icon-placeholder"]
  21b275da_5d48_2bac_6d26_0c8532d7f8ed --> de6fac54_74ca_6c25_8f8b_d1ba3287dbf2
  style 21b275da_5d48_2bac_6d26_0c8532d7f8ed fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import { LoginForm } from "@/registry/bases/base/blocks/login-03/components/login-form"
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"

export default function LoginPage() {
  return (
    <div className="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
      <div className="flex w-full max-w-sm flex-col gap-6">
        <a href="#" className="flex items-center gap-2 self-center font-medium">
          <div className="bg-primary text-primary-foreground flex size-6 items-center justify-center rounded-md">
            <IconPlaceholder
              lucide="GalleryVerticalEndIcon"
              tabler="IconLayoutRows"
              hugeicons="LayoutBottomIcon"
              phosphor="RowsIcon"
              remixicon="RiGalleryLine"
              className="size-4"
            />
          </div>
          Acme Inc.
        </a>
        <LoginForm />
      </div>
    </div>
  )
}

Subdomains

Functions

Dependencies

  • icon-placeholder
  • login-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, UIPrimitives subdomain.
What functions are defined in page.tsx?
page.tsx defines 1 function(s): LoginPage.
What does page.tsx depend on?
page.tsx imports 2 module(s): icon-placeholder, login-form.
Where is page.tsx in the architecture?
page.tsx is located at apps/v4/registry/bases/base/blocks/login-03/page.tsx (domain: ComponentRegistry, subdomain: UIPrimitives, directory: apps/v4/registry/bases/base/blocks/login-03).

Analyze Your Own Codebase

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

Try Supermodel Free