import type { ReactNode } from 'react'; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from 'cloudrite'; // 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}
); const faqs = [ ['hosting', 'Where are your servers?', 'All Cloudrite hosting runs on infrastructure in New Zealand, so your visitors get low-latency responses and your data stays onshore.'], ['support', 'Do you offer after-hours support?', 'Standard support is by appointment. Emergency support is available 24/7 for hosting and business-critical outages.'], ['migration', 'Can you move my existing site?', "Yes — WordPress, Squarespace, Wix and Shopify migrations are included free when you move hosting to us."], ]; export const Faq = () => ( {faqs.map(([value, q, a]) => ( {q} {a} ))} ); export const Multiple = () => ( {faqs.map(([value, q, a]) => ( {q} {a} ))} );