PageSectionWithAside() — supabase Function Reference
Architecture documentation for the PageSectionWithAside() function in page-section-with-aside.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/page-section-with-aside.tsx lines 12–45
export default function PageSectionWithAside() {
return (
<div className="w-full">
<PageSection>
<PageSectionMeta>
<PageSectionSummary>
<PageSectionTitle>Section Title</PageSectionTitle>
<PageSectionDescription>
This demonstrates PageSection with actions in the Aside component.
</PageSectionDescription>
</PageSectionSummary>
<PageSectionAside>
<Button type="default" size="small">
Secondary
</Button>
<Button type="primary" size="small">
Primary Action
</Button>
</PageSectionAside>
</PageSectionMeta>
<PageSectionContent>
<Card>
<CardContent className="p-6">
<p className="text-sm text-foreground-light">
The Aside component positions actions horizontally aligned with the section summary,
providing a clear separation between description and actions.
</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