Components
An empty state that tells the user they're offline with an icon, title, description and a retry button.
Loading preview...
import EmptyComponent from "@/components/ui/empty8";
export default function Demo() {
return (
<div className="flex min-h-[400px] w-full items-center justify-center p-6">
<EmptyComponent />
</div>
);
}