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="xs" className="w-full max-w-xs">
<FrameHeader>
<FrameTitle>Project Configuration</FrameTitle>
<FrameDescription>Adjust your environment settings</FrameDescription>
</FrameHeader>
<FramePanel>
<h2 className="text-sm font-semibold">Environment Variables</h2>
<p className="text-muted-foreground text-sm">
XS spacing is ideal for high-density toolbars and property panels.
</p>
</FramePanel>
<FrameFooter>
<p className="text-muted-foreground text-sm">Updated 2m ago</p>
</FrameFooter>
</Frame>
</div>
)
}








