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 className="w-full" variant="ghost">
<FrameHeader>
<FrameTitle>No Outer Border</FrameTitle>
<FrameDescription>
This frame uses variant="ghost" to remove the outer border.
</FrameDescription>
</FrameHeader>
<FramePanel>
<p className="text-muted-foreground text-sm">
The outer container of this frame has no border, only the background
and panels are visible.
</p>
</FramePanel>
</Frame>
</div>
)
}








