Components
A Tron-inspired empty state placeholder with a dashed border, mono-typography label, optional icon and call-to-action button for when there is no content to show.
Loading preview...
import { EmptyState } from "@/components/ui/empty-state"
export default function Default() {
return (
<div className="flex min-h-[420px] w-full items-center justify-center bg-background p-8">
<EmptyState
title="No Transmissions"
description="Nothing has reached the grid yet. New signals will appear here once activity begins."
action={{ label: "Scan Network" }}
/>
</div>
)
}