|
| 1 | +--- |
| 2 | +title: "Customize UI" |
| 3 | +description: "Customize the look, feel, and functionality of CopilotKit's UI components." |
| 4 | +icon: "lucide/Settings" |
| 5 | +--- |
| 6 | +import { MessageCircleIcon, BrushIcon, PuzzleIcon, SettingsIcon } from "lucide-react"; |
| 7 | + |
| 8 | +CopilotKit offers a variety of ways to create a UI interface for your Copilots and CoAgents. This ranges |
| 9 | +from using our built-in UI components to fully customizing the UI with headless UI. |
| 10 | + |
| 11 | +<Cards> |
| 12 | + <Card |
| 13 | + className="border border-gray-300 hover:border-gray-400 transition-colors" |
| 14 | + title={<div className="mb-3"><MessageCircleIcon className="inline mr-2" />Prebuilt Copilot UI</div>} |
| 15 | + description="Get started quickly with CopilotKit's ready-to-use UI components." |
| 16 | + href="./custom-look-and-feel/built-in-ui-components" |
| 17 | + /> |
| 18 | + <Card |
| 19 | + className="border border-gray-300 hover:border-gray-400 transition-colors" |
| 20 | + title={<div className="mb-3"><BrushIcon className="inline mr-2" />Styling Copilot UI</div>} |
| 21 | + description="Customize the appearance of CopilotKit's pre-built components with your own styles." |
| 22 | + href="./custom-look-and-feel/customize-built-in-ui-components" |
| 23 | + /> |
| 24 | + <Card |
| 25 | + className="border border-gray-300 hover:border-gray-400 transition-colors" |
| 26 | + title={<div className="mb-3"><PuzzleIcon className="inline mr-2" />Custom Components</div>} |
| 27 | + description="Replace the Copilot UI components with your own while keeping the core functionality." |
| 28 | + href="./custom-look-and-feel/bring-your-own-components" |
| 29 | + /> |
| 30 | + <Card |
| 31 | + className="border border-gray-300 hover:border-gray-400 transition-colors" |
| 32 | + title={<div className="mb-3"><SettingsIcon className="inline mr-2" />Fully Custom UI</div>} |
| 33 | + description="Build your UI from scratch using CopilotKit's hooks and core functionality." |
| 34 | + href="./custom-look-and-feel/headless-ui" |
| 35 | + /> |
| 36 | + <Card |
| 37 | + className="border border-gray-300 hover:border-gray-400 transition-colors" |
| 38 | + title={<div className="mb-3"><SettingsIcon className="inline mr-2" />Markdown Rendering</div>} |
| 39 | + description="Modify Copilotkit's use of markdown to display elements within the assistant arrow text, such as source citing and reasoning steps." |
| 40 | + href="./custom-look-and-feel/markdown-rendering" |
| 41 | + /> |
| 42 | +</Cards> |
0 commit comments