PageSectionHorizontal() — supabase Function Reference
Architecture documentation for the PageSectionHorizontal() function in page-section-horizontal.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/page-section-horizontal.tsx lines 11–38
export default function PageSectionHorizontal() {
return (
<div className="w-full">
<PageSection orientation="horizontal">
<PageSectionMeta>
<PageSectionSummary>
<PageSectionTitle>Section Title</PageSectionTitle>
<PageSectionDescription>
In horizontal orientation, the summary (title and description) appears on the left,
with content arranged on the right on larger screens. This is useful for detailed
sections where you want to maintain context while viewing content.
</PageSectionDescription>
</PageSectionSummary>
</PageSectionMeta>
<PageSectionContent>
<Card>
<CardContent className="p-6">
<p className="text-sm text-foreground-light">
The content area appears alongside the summary in a horizontal layout. On smaller
screens, it will stack vertically.
</p>
</CardContent>
</Card>
</PageSectionContent>
</PageSection>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free