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

import {
Frame,
FrameDescription,
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 stacked className="w-full max-w-sm">
<FrameHeader>
<FrameTitle>Server Logs</FrameTitle>
<FrameDescription>Recent activity and errors</FrameDescription>
</FrameHeader>
<FramePanel>
<h2 className="text-sm font-semibold">Auth Service</h2>
<p className="text-muted-foreground text-sm">
Successfully logged in user: admin
</p>
</FramePanel>
<FramePanel>
<h2 className="text-sm font-semibold">Database</h2>
<p className="text-muted-foreground text-sm">
Query execution time: 12ms
</p>
</FramePanel>
<FramePanel>
<h2 className="text-sm font-semibold">Storage</h2>
<p className="text-muted-foreground text-sm">
Upload complete: image.png
</p>
</FramePanel>
</Frame>
</div>
)
}








