> ## Documentation Index
> Fetch the complete documentation index at: https://docs.get-clara.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# 始めに

> Twenty 開発者ドキュメントへようこそ。Twenty の拡張、セルフホスティング、貢献のためのリソースです。

export const CardTitle = ({children}) => {
  return <div className="text-base font-semibold text-gray-900 dark:text-gray-100">
      {children}
    </div>;
};

<CardGroup cols={2}>
  <Card href="/l/ja/developers/api" icon="code">
    <CardTitle>API</CardTitle>
    REST または GraphQL で CRM データをクエリおよび変更します。
  </Card>

  <Card href="/l/ja/developers/webhooks" icon="bell">
    <CardTitle>Webhooks</CardTitle>
    イベント発生時にリアルタイムで通知を受け取ります。
  </Card>

  <Card href="/l/ja/developers/apps/apps" icon="puzzle-piece">
    <CardTitle>Apps</CardTitle>
    Twenty の機能を拡張するカスタムアプリケーションを構築します。
  </Card>

  <Card href="/l/ja/developers/self-host/self-host" icon="desktop">
    <CardTitle>Self-Host</CardTitle>
    ご自身のインフラストラクチャで Twenty をデプロイおよび管理します。
  </Card>

  <Card href="/l/ja/developers/contribute/contribute" icon="github">
    <CardTitle>Contribute</CardTitle>
    オープンソースコミュニティに参加し、Twenty に貢献しましょう。
  </Card>
</CardGroup>
