|
| 1 | +import React from "react"; |
| 2 | +import { Link } from "react-router-dom"; |
| 3 | +import feature4 from "../../assets/images/features4.jpg"; |
| 4 | + |
| 5 | +import { MdKeyboardArrowRight } from "../../assets/icons/vander"; |
| 6 | + |
| 7 | +export default function AgentAboutTwo() { |
| 8 | + return ( |
| 9 | + <> |
| 10 | + <div className="container relative md:mt-24 mt-16"> |
| 11 | + <div className="grid md:grid-cols-2 grid-cols-1 items-center gap-6"> |
| 12 | + <div className=""> |
| 13 | + <h3 className="mb-4 md:text-3xl md:leading-normal text-2xl leading-normal font-semibold"> |
| 14 | + CodeBolt Supports Multiple Agents |
| 15 | + </h3> |
| 16 | + <p className="text-slate-300 max-w-xl"> |
| 17 | + CodeBolt supports diverse AI agents like Devin, Devika, and Open |
| 18 | + Devin, tailored for specific industry tasks. It facilitates |
| 19 | + complex dialogues, software development enhancements, and |
| 20 | + community-driven innovations. With its robust multi-agent support, |
| 21 | + CodeBolt effectively integrates and manages AI functionalities, |
| 22 | + making it essential for deploying advanced solutions across |
| 23 | + various settings. |
| 24 | + </p> |
| 25 | + |
| 26 | + {/* <ul className="list-none text-slate-400 mt-4"> |
| 27 | + <li className="mb-2 flex items-center"> |
| 28 | + <div className="h-5 w-5 me-2"> |
| 29 | + <FiCheckCircle className="text-amber-400 h-5 w-5 me-2" />{" "} |
| 30 | + </div> |
| 31 | + Seamless Integration: Seamlessly integrate AI agent creation |
| 32 | + into your workflow by following our clear and concise |
| 33 | + documentation. |
| 34 | + </li> |
| 35 | + <li className="mb-2 flex items-center"> |
| 36 | + <div className="h-5 w-5 me-2"> |
| 37 | + <FiCheckCircle className="text-amber-400 h-5 w-5 me-2" />{" "} |
| 38 | + </div> |
| 39 | + Efficiency Boost: Save time and resources with a straightforward |
| 40 | + process that eliminates the need for complex coding or |
| 41 | + specialized training. |
| 42 | + </li> |
| 43 | + <li className="mb-2 flex items-center"> |
| 44 | + <div className="h-5 w-5 me-2"> |
| 45 | + <FiCheckCircle className="text-amber-400 h-5 w-5 me-2" />{" "} |
| 46 | + </div>{" "} |
| 47 | + <>Customization: </> Tailor AI agents to your specific needs by |
| 48 | + following our step-by-step instructions, ensuring your agents |
| 49 | + are perfectly suited to your tasks. |
| 50 | + </li> |
| 51 | + </ul> */} |
| 52 | + |
| 53 | + <div className="mt-4"> |
| 54 | + <Link |
| 55 | + to="https://codeboltai.web.app/registry" |
| 56 | + target="_blank" |
| 57 | + className="hover:text-amber-400 font-medium duration-500 inline-flex items-center" |
| 58 | + > |
| 59 | + Find Out More{" "} |
| 60 | + <MdKeyboardArrowRight className="ms-1 text-[20px]" /> |
| 61 | + </Link> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + <div className="relative overflow-hidden rounded-lg border border-amber-400/5 bg-gradient-to-tl to-amber-400/30 from-fuchsia-600/30 dark:to-amber-400/50 dark:from-fuchsia-600/50 ps-6 pt-6 lg:me-8"> |
| 65 | + <img |
| 66 | + src={feature4} |
| 67 | + className="ltr:rounded-tl-lg rtl:rounded-tr-lg" |
| 68 | + alt="" |
| 69 | + /> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + </> |
| 74 | + ); |
| 75 | +} |
0 commit comments