import type { ReactNode } from 'react'; import { Button, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, } from 'cloudrite'; import { CloudOff, Plus } from 'lucide-react'; // Cloudrite is dark-only — foreground-coloured text and `border-border` are // invisible on the preview harness's white card body. Stories render on the // brand surface, which is also how a real screen is built. const Surface = ({ children }: { children: ReactNode }) => (
{children}
); export const Default = () => ( No sites yet Add your first site and we'll handle DNS, SSL and backups for you. );