diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-29 09:51:55 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-29 09:51:55 -0700 |
commit | 178c784639de9cd052d3cfb56183a584ab885549 (patch) | |
tree | 907e8d3ad5b4aaaf0a05d183eb06eaac8ad24fab /docs/src/pages | |
parent | 1c85d3c1e184bb6434339af533df16667866e786 (diff) | |
parent | e2c9094c86d60ca4b5b5d866f8f4ad5a44943004 (diff) | |
download | sncontinue-178c784639de9cd052d3cfb56183a584ab885549.tar.gz sncontinue-178c784639de9cd052d3cfb56183a584ab885549.tar.bz2 sncontinue-178c784639de9cd052d3cfb56183a584ab885549.zip |
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'docs/src/pages')
-rw-r--r-- | docs/src/pages/index.js | 43 | ||||
-rw-r--r-- | docs/src/pages/index.module.css | 23 |
2 files changed, 0 insertions, 66 deletions
diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js deleted file mode 100644 index c97234e6..00000000 --- a/docs/src/pages/index.js +++ /dev/null @@ -1,43 +0,0 @@ -import React from "react"; -import clsx from "clsx"; -import Link from "@docusaurus/Link"; -import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; -import Layout from "@theme/Layout"; -import HomepageFeatures from "@site/src/components/HomepageFeatures"; - -import styles from "./index.module.css"; - -function HomepageHeader() { - const { siteConfig } = useDocusaurusContext(); - return ( - <header className={clsx("hero hero--primary", styles.heroBanner)}> - <div className="container"> - <h1 className="hero__title">{siteConfig.title}</h1> - <p className="hero__subtitle">{siteConfig.tagline}</p> - <div className={styles.buttons}> - <Link - className="button button--secondary button--lg" - to="/docs/getting-started" - > - Download for VS Code - </Link> - </div> - </div> - </header> - ); -} - -export default function Home() { - const { siteConfig } = useDocusaurusContext(); - return ( - <Layout - title={`Docs`} - description="Documentation for the `Continue` library" - > - <HomepageHeader /> - <main> - <HomepageFeatures /> - </main> - </Layout> - ); -} diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css deleted file mode 100644 index 9f71a5da..00000000 --- a/docs/src/pages/index.module.css +++ /dev/null @@ -1,23 +0,0 @@ -/** - * CSS files with the .module.css suffix will be treated as CSS modules - * and scoped locally. - */ - -.heroBanner { - padding: 4rem 0; - text-align: center; - position: relative; - overflow: hidden; -} - -@media screen and (max-width: 996px) { - .heroBanner { - padding: 2rem; - } -} - -.buttons { - display: flex; - align-items: center; - justify-content: center; -} |