569d887d1e
Renaming the package so any further PRs directed to the website are targeted to the reworked code instead of diverging. Once merged, I will start preparing this for deployment to dev to test before releasing to prod. Any improvements will also be applied to this package. I avoided making significant changes to API routes so nothing breaks, but will test it thoroughly today to confirm. That said, everything is ported - double checked. Big diff PR, impossible to review, but last one! No more rebuilds.
39 lines
1.9 KiB
TypeScript
39 lines
1.9 KiB
TypeScript
import { type MessageDescriptor } from '@lingui/core';
|
||
import { msg } from '@lingui/core/macro';
|
||
|
||
export type FaqQuestion = {
|
||
question: MessageDescriptor;
|
||
answer: MessageDescriptor;
|
||
};
|
||
|
||
export const FAQ_QUESTIONS: readonly FaqQuestion[] = [
|
||
{
|
||
question: msg`Is Twenty really open-source?`,
|
||
answer: msg`Yes. Twenty is the #1 Open Source CRM on GitHub. You can self-host to fully own your infrastructure, or run it on our managed cloud for a zero-ops setup.`,
|
||
},
|
||
{
|
||
question: msg`How long does it take to get started?`,
|
||
answer: msg`Sign up for Cloud in under a minute and start your 30-day trial. For larger rollouts, our 4-hour Onboarding Packs or certified partners get you live in 1–2 weeks.`,
|
||
},
|
||
{
|
||
question: msg`Can I migrate from Salesforce or HubSpot?`,
|
||
answer: msg`Yes. Import your data via CSV, or use our API for 50,000+ records. Our partners can handle the full migration for you.`,
|
||
},
|
||
{
|
||
question: msg`Do I need a developer to customize Twenty?`,
|
||
answer: msg`No. Build custom objects, fields, views, and no-code workflows straight from Settings. Unlimited, no extra charge.`,
|
||
},
|
||
{
|
||
question: msg`Can developers extend Twenty with code?`,
|
||
answer: msg`Yes, with our Apps framework. Scaffold an extension with \`npx create-twenty-app\` and ship custom objects, server-side logic functions, React components that render inside Twenty’s UI, AI skills and agents, views, and navigation, all in TypeScript, deployable to any workspace.`,
|
||
},
|
||
{
|
||
question: msg`Does Twenty work with Claude, ChatGPT, and Cursor?`,
|
||
answer: msg`Yes. Every Cloud workspace ships with a native MCP server. Connect your AI assistant via OAuth and it can read and write your CRM data in natural language.`,
|
||
},
|
||
{
|
||
question: msg`What does Twenty cost?`,
|
||
answer: msg`Cloud Pro is $9/user/month (yearly). Organization is $19/user/month and unlocks SSO and row-level permissions for teams that need finer access control.`,
|
||
},
|
||
];
|