diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index b021bd7..4c7cbb4 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -38,6 +38,7 @@ const config: Config = { logo: { alt: "CORE Framework", src: "dist/core.png", + href: '/about', }, items: [ { diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css deleted file mode 100644 index 9f71a5d..0000000 --- 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; -} diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx deleted file mode 100644 index 5d8eb93..0000000 --- a/docs/src/pages/index.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import clsx from 'clsx'; -import Link from '@docusaurus/Link'; -import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; -import Layout from '@theme/Layout'; -import Heading from '@theme/Heading'; - -import styles from './index.module.css'; - -export default function Home(): JSX.Element { - const {siteConfig} = useDocusaurusContext(); - return ( - -
-
- You shouldn't see this. -

You should have been redirected to the About page.

-
- Click here to get there - -
-
-
-
- ); -}