import type { ReactNode } from 'react'; import { Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from 'cloudrite'; import { ArrowUpRight, Cloud, TrendingUp } 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 ServiceCard = () => (
Cloud Hosting Fast, easy hosting for WordPress, game servers and more — proudly hosted here in New Zealand.
    {['NZ Hosted', 'WordPress', 'Game Servers', '24/7 Uptime'].map((f) => (
  • {f}
  • ))}
); export const WithAction = () => ( Managed WordPress Renews 12 March 2027 Backups, updates and uptime monitoring handled for you. Includes a free NZ-hosted staging site. ); export const StatCard = () => ( Uptime this month 99.98% +0.04% Measured across all Auckland edge nodes );