Components
ReUI Frame with the first 10 official ReUI examples, preserved from the MIT-licensed source registry.

import {
Frame,
FrameDescription,
FrameFooter,
FrameHeader,
FramePanel,
FrameTitle,
} from "@/components/ui/reui-frame"
export default function Pattern() {
return (
<div className="flex w-full justify-center px-6 sm:px-10">
<Frame spacing="sm" className="w-full max-w-sm">
<FrameHeader>
<FrameTitle>Database Overview</FrameTitle>
<FrameDescription>
Monitoring system health and performance
</FrameDescription>
</FrameHeader>
<FramePanel>
<h2 className="text-sm font-semibold">Live Connections</h2>
<p className="text-muted-foreground text-sm">
Small spacing provides a balanced layout for sidebar widgets and
secondary dashboards.
</p>
</FramePanel>
<FrameFooter>
<p className="text-muted-foreground text-sm">Status: Operational</p>
</FrameFooter>
</Frame>
</div>
)
}








