page.tsx — ui Source File
Architecture documentation for page.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR b54e795d_3ebb_63de_9b6d_2970ccf7f713["page.tsx"] d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"] b54e795d_3ebb_63de_9b6d_2970ccf7f713 --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3 19ad19ea_db7b_a438_78e2_60673d7022e5["login-form"] b54e795d_3ebb_63de_9b6d_2970ccf7f713 --> 19ad19ea_db7b_a438_78e2_60673d7022e5 style b54e795d_3ebb_63de_9b6d_2970ccf7f713 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { GalleryVerticalEnd } from "lucide-react"
import { LoginForm } from "@/registry/new-york/blocks/login-02/components/login-form"
export default function LoginPage() {
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="flex h-6 w-6 items-center justify-center rounded-md bg-primary text-primary-foreground">
<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">
<LoginForm />
</div>
</div>
</div>
<div className="relative hidden bg-muted 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>
)
}
Domain
Subdomains
Functions
Dependencies
- login-form
- lucide-react
Source
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): LoginPage.
What does page.tsx depend on?
page.tsx imports 2 module(s): login-form, lucide-react.
Where is page.tsx in the architecture?
page.tsx is located at deprecated/www/registry/new-york/blocks/login-02/page.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/new-york/blocks/login-02).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free