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 330ef281_d6f1_67d6_0db5_cb680720ae91["page.tsx"] 0ef877d6_b768_4222_bd20_50d875ac5e58["separator"] 330ef281_d6f1_67d6_0db5_cb680720ae91 --> 0ef877d6_b768_4222_bd20_50d875ac5e58 c5fa8684_5cdb_06d3_d367_b5bc410dbf3e["account-form"] 330ef281_d6f1_67d6_0db5_cb680720ae91 --> c5fa8684_5cdb_06d3_d367_b5bc410dbf3e style 330ef281_d6f1_67d6_0db5_cb680720ae91 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { Separator } from "@/registry/new-york/ui/separator"
import { AccountForm } from "@/app/(app)/examples/forms/account/account-form"
export default function SettingsAccountPage() {
return (
<div className="space-y-6">
<div>
<h3 className="text-lg font-medium">Account</h3>
<p className="text-sm text-muted-foreground">
Update your account settings. Set your preferred language and
timezone.
</p>
</div>
<Separator />
<AccountForm />
</div>
)
}
Domain
Subdomains
Functions
Dependencies
- account-form
- separator
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, Styles subdomain.
What functions are defined in page.tsx?
page.tsx defines 1 function(s): SettingsAccountPage.
What does page.tsx depend on?
page.tsx imports 2 module(s): account-form, separator.
Where is page.tsx in the architecture?
page.tsx is located at deprecated/www/app/(app)/examples/forms/account/page.tsx (domain: ComponentRegistry, subdomain: Styles, directory: deprecated/www/app/(app)/examples/forms/account).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free