Home / Function/ SignupPage() — ui Function Reference

SignupPage() — ui Function Reference

Architecture documentation for the SignupPage() function in page.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  95c97f8e_8a89_ea47_666a_5abb4b8e7cf7["SignupPage()"]
  0c322e2f_0596_70a6_9021_f1392081b042["page.tsx"]
  95c97f8e_8a89_ea47_666a_5abb4b8e7cf7 -->|defined in| 0c322e2f_0596_70a6_9021_f1392081b042
  style 95c97f8e_8a89_ea47_666a_5abb4b8e7cf7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/bases/base/blocks/signup-02/page.tsx lines 6–40

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">
              <IconPlaceholder
                lucide="GalleryVerticalEndIcon"
                tabler="IconLayoutRows"
                hugeicons="LayoutBottomIcon"
                phosphor="RowsIcon"
                remixicon="RiGalleryLine"
                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

Frequently Asked Questions

What does SignupPage() do?
SignupPage() is a function in the ui codebase, defined in apps/v4/registry/bases/base/blocks/signup-02/page.tsx.
Where is SignupPage() defined?
SignupPage() is defined in apps/v4/registry/bases/base/blocks/signup-02/page.tsx at line 6.

Analyze Your Own Codebase

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

Try Supermodel Free