fix(docs): Use content instead of props for Card titles to enable translation (#15756)

Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
Abdul Rahman
2025-11-12 15:14:04 +05:30
committed by GitHub
parent 534a2bf647
commit 12e2820715
7 changed files with 120 additions and 40 deletions
@@ -3,18 +3,23 @@ title: Overview
description: Technical documentation for contributors and developers working with Twenty
---
import { CardTitle } from "/snippets/card-title.mdx"
## Getting started
<CardGroup cols={2}>
<Card title="Local Setup" href="/developers/local-setup" img="/images/user-guide/fields/field.png">
<Card href="/developers/local-setup" img="/images/user-guide/fields/field.png">
<CardTitle>Local Setup</CardTitle>
The guide for contributors (or curious developers) who want to run Twenty locally (on laptop, PC...)
</Card>
<Card title="Self-Hosting" href="/developers/self-hosting/docker-compose" img="/images/user-guide/integrations/plug.png">
<Card href="/developers/self-hosting/docker-compose" img="/images/user-guide/integrations/plug.png">
<CardTitle>Self-Hosting</CardTitle>
Learn how to host Twenty on your own server
</Card>
<Card title="API and Webhooks" href="/developers/api-and-webhooks/api" img="/images/user-guide/api/api.png">
<Card href="/developers/api-and-webhooks/api" img="/images/user-guide/api/api.png">
<CardTitle>API and Webhooks</CardTitle>
REST and GraphQL APIs, webhooks, and integrations
</Card>
</CardGroup>
@@ -22,15 +27,18 @@ description: Technical documentation for contributors and developers working wit
## Contributing
<CardGroup cols={2}>
<Card title="Bugs and Requests" href="/developers/bug-and-requests" img="/images/user-guide/api/api.png">
<Card href="/developers/bug-and-requests" img="/images/user-guide/api/api.png">
<CardTitle>Bugs and Requests</CardTitle>
Ask for help on GitHub or Discord
</Card>
<Card title="Frontend Development" href="/developers/frontend-development/frontend-commands" img="/images/user-guide/create-workspace/workspace-cover.png">
<Card href="/developers/frontend-development/frontend-commands" img="/images/user-guide/create-workspace/workspace-cover.png">
<CardTitle>Frontend Development</CardTitle>
Frontend commands, Figma, React Best Practices...
</Card>
<Card title="Backend Development" href="/developers/backend-development/server-commands" img="/images/user-guide/kanban-views/kanban.png">
<Card href="/developers/backend-development/server-commands" img="/images/user-guide/kanban-views/kanban.png">
<CardTitle>Backend Development</CardTitle>
NestJS, Custom Objects, Queues...
</Card>
</CardGroup>