diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-02 19:45:17 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-02 19:45:17 -0400 |
commit | 27be51addfbf146962efed0221c26431353c326a (patch) | |
tree | 88e3fd4f32bf02734a79be83d437c5e1cf86b192 /docs/src/components | |
parent | 725b4f00ff6699e0ea52b7bd7bf03398dfa22016 (diff) | |
parent | 85b19295941c272f3a6250ecab6126d45d357d6a (diff) | |
download | sncontinue-27be51addfbf146962efed0221c26431353c326a.tar.gz sncontinue-27be51addfbf146962efed0221c26431353c326a.tar.bz2 sncontinue-27be51addfbf146962efed0221c26431353c326a.zip |
Merge branch 'docs'
Diffstat (limited to 'docs/src/components')
-rw-r--r-- | docs/src/components/HomepageFeatures/index.js | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/docs/src/components/HomepageFeatures/index.js b/docs/src/components/HomepageFeatures/index.js index 78f410ba..0c5d8272 100644 --- a/docs/src/components/HomepageFeatures/index.js +++ b/docs/src/components/HomepageFeatures/index.js @@ -1,43 +1,44 @@ -import React from 'react'; -import clsx from 'clsx'; -import styles from './styles.module.css'; +import React from "react"; +import clsx from "clsx"; +import styles from "./styles.module.css"; const FeatureList = [ { - title: 'Easy to Use', - Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, + title: "Tell LLMs when to step in", + Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default, description: ( <> - Docusaurus was designed from the ground up to be easily installed and - used to get your website up and running quickly. + Seamlessly put your repetitive software development tasks on autopilot + by leveraging recipes created by others </> ), }, { - title: 'Focus on What Matters', - Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, + title: "Write your own recipes", + Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default, description: ( <> - Docusaurus lets you focus on your docs, and we'll do the chores. Go - ahead and move your docs into the <code>docs</code> directory. + Use the Continue SDK to create your own custom steps and compose them + into personalized recipes, guiding LLMs through common sequences of + tasks </> ), }, { - title: 'Powered by React', - Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, + title: "Wield LLMs with confidence", + Svg: require("@site/static/img/undraw_docusaurus_react.svg").default, description: ( <> - Extend or customize your website layout by reusing React. Docusaurus can - be extended while reusing the same header and footer. + Use the Continue GUI to review, reverse, and rerun steps or even entire + recipes, allowing you to build trust in LLMs </> ), }, ]; -function Feature({Svg, title, description}) { +function Feature({ Svg, title, description }) { return ( - <div className={clsx('col col--4')}> + <div className={clsx("col col--4")}> <div className="text--center"> <Svg className={styles.featureSvg} role="img" /> </div> |