import React from "react"; import clsx from "clsx"; import styles from "./styles.module.css"; const FeatureList = [ { title: "Tell LLMs when to step in", Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default, description: ( <> Seamlessly put your repetitive software development tasks on autopilot by leveraging recipes created by others ), }, { title: "Write your own recipes", Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default, description: ( <> Use the Continue SDK to create custom steps and compose them into recipes, guiding LLMs through common tasks ), }, { title: "Wield LLMs with confidence", Svg: require("@site/static/img/undraw_docusaurus_react.svg").default, description: ( <> Use the Continue GUI to review, reverse, and rerun steps or even entire recipes, allowing you to build trust in language models ), }, ]; function Feature({ Svg, title, description }) { return (

{title}

{description}

); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }