import type { ReactNode } from 'react'; import { Alert, AlertDescription, AlertTitle } from 'cloudrite'; import { CircleAlert, Info, TriangleAlert } 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 = () => ( Scheduled maintenance Our Auckland edge nodes will be patched on Sunday 02:00–03:00 NZST. ); export const Destructive = () => ( SSL certificate expired cloudrite.co.nz stopped serving HTTPS 2 hours ago. Renew it to restore the site. ); export const TitleOnly = () => ( Backup skipped — disk almost full. );