|
| 1 | +import { Accordion, Body, Heading, VStack } from '@app/ui-system'; |
| 2 | +import type { FC } from 'react'; |
| 3 | + |
| 4 | +export const FAQSection: FC<unknown> = () => ( |
| 5 | + <VStack id="faq" className={['p-24', 'pt-88', 'gap-48', 'bg-background', 'max-md:p-16', 'max-md:pt-64']}> |
| 6 | + <VStack className={['gap-8']}> |
| 7 | + <Heading level={2} size="4xl"> |
| 8 | + FAQ |
| 9 | + </Heading> |
| 10 | + <Body size="xl" className={['text-foreground']}> |
| 11 | + Commonly asked questions about Composify Cloud. |
| 12 | + </Body> |
| 13 | + </VStack> |
| 14 | + <VStack className={['border', 'px-24', 'py-4', 'rounded-sm']}> |
| 15 | + <Accordion summary="How is Composify Cloud different from the open-source version?"> |
| 16 | + The core editor and renderer are identical. Cloud adds managed hosting, real-time collaboration, and version |
| 17 | + history, so you don't have to build that infrastructure yourself. |
| 18 | + </Accordion> |
| 19 | + <Accordion summary="Can I start for free?"> |
| 20 | + Yes. The free tier includes 1 page and 1 member with unlimited bandwidth. No credit card required. |
| 21 | + </Accordion> |
| 22 | + <Accordion summary="What happens if I exceed my plan limits?"> |
| 23 | + You can add more pages ($1 per page) or members ($5 per member) anytime. |
| 24 | + </Accordion> |
| 25 | + <Accordion summary="Do I need to rewrite my existing components?"> |
| 26 | + No. Composify works with your components as they are. You register them in a separate catalog file, and they |
| 27 | + become instantly editable. Your original code stays untouched. |
| 28 | + </Accordion> |
| 29 | + <Accordion summary="Where is my data stored?"> |
| 30 | + Pages are stored in our managed cloud infrastructure. We handle storage, backups, and delivery. Your content is |
| 31 | + served via CDN with unlimited bandwidth, so traffic spikes won't slow you down. |
| 32 | + </Accordion> |
| 33 | + <Accordion summary="Can I export my data?"> |
| 34 | + Everything is stored as standard JSX strings. You can fetch your content anytime via our API and migrate to |
| 35 | + self-hosted if you ever want to leave. |
| 36 | + </Accordion> |
| 37 | + <Accordion summary="What frameworks are supported?"> |
| 38 | + Anything that runs React. Next.js, Remix, React Router, Expo — if it renders React components, Composify works. |
| 39 | + Vue support is on the roadmap. |
| 40 | + </Accordion> |
| 41 | + <Accordion summary="Can non-developers use it?"> |
| 42 | + That's the point. Engineers build and register components. Everyone else (marketers, designers, content editors) |
| 43 | + uses the visual editor to build pages without touching code. |
| 44 | + </Accordion> |
| 45 | + <Accordion summary="How does this compare to Builder.io or Puck?"> |
| 46 | + Most visual editors store data as JSON and require you to adapt your components. Composify stores JSX directly |
| 47 | + and works with your existing code without rewrites. |
| 48 | + </Accordion> |
| 49 | + <Accordion summary="What's coming next?"> |
| 50 | + Real-time collaboration and version history with time-travel are on the roadmap. Both will be included in Pro |
| 51 | + and Business plans at no extra cost. |
| 52 | + </Accordion> |
| 53 | + </VStack> |
| 54 | + </VStack> |
| 55 | +); |
0 commit comments