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 7e29c4b5_5256_d207_d4c0_fbe66dc5bf77["page.tsx"] 885a48d4_40f3_a9de_365b_e46d70e7678b["cards"] 7e29c4b5_5256_d207_d4c0_fbe66dc5bf77 --> 885a48d4_40f3_a9de_365b_e46d70e7678b 89c91d90_5c60_9064_52c7_ec3cfe60a73b["theme-customizer"] 7e29c4b5_5256_d207_d4c0_fbe66dc5bf77 --> 89c91d90_5c60_9064_52c7_ec3cfe60a73b style 7e29c4b5_5256_d207_d4c0_fbe66dc5bf77 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { CardsDemo } from "@/components/cards"
import { ThemeCustomizer } from "@/components/theme-customizer"
export const dynamic = "force-static"
export const revalidate = false
export default function ThemesPage() {
return (
<>
<div id="themes" className="container-wrapper scroll-mt-20">
<div className="container flex items-center justify-between gap-8 px-6 py-4 md:px-8">
<ThemeCustomizer />
</div>
</div>
<div className="container-wrapper section-soft flex flex-1 flex-col pb-6">
<div className="theme-container container flex flex-1 flex-col">
<CardsDemo />
</div>
</div>
</>
)
}
Domain
Subdomains
Functions
Dependencies
- cards
- theme-customizer
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 DocumentationAtlas domain, Changelog subdomain.
What functions are defined in page.tsx?
page.tsx defines 1 function(s): ThemesPage.
What does page.tsx depend on?
page.tsx imports 2 module(s): cards, theme-customizer.
Where is page.tsx in the architecture?
page.tsx is located at apps/v4/app/(app)/themes/page.tsx (domain: DocumentationAtlas, subdomain: Changelog, directory: apps/v4/app/(app)/themes).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free