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 dense className="w-full max-w-sm">
<FrameHeader>
<FrameTitle>Inventory Check</FrameTitle>
<FrameDescription>Real-time stock monitoring</FrameDescription>
</FrameHeader>
<FramePanel>
<h2 className="text-sm font-semibold">Warehouse A</h2>
<p className="text-muted-foreground text-sm">
Dense mode removes outer padding for a more compact appearance.
</p>
</FramePanel>
</Frame>
</div>
)
}








