1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

add demo site to docs

This commit is contained in:
checktheroads
2021-01-03 00:09:48 -07:00
parent a006bd3d46
commit 1a7a56ea32
2 changed files with 1 additions and 68 deletions

View File

@@ -24,12 +24,7 @@ const docusaurusConfig = {
links: [
{ to: "docs/introduction", label: "Docs", position: "left" },
{ to: "screenshots", label: "Screenshots", position: "left" },
{ to: "demo", label: "Demo", position: "left" },
// {
// href: "https://demo.hyperglass.io",
// label: "Demo",
// position: "left",
// },
{ href: "https://demo.hyperglass.io", label: "Demo", position: "left" },
],
},
footer: {

View File

@@ -1,62 +0,0 @@
import * as React from "react";
import classnames from "classnames";
import Layout from "@theme/Layout";
import Link from "@docusaurus/Link";
import useBaseUrl from "@docusaurus/useBaseUrl";
import styles from "./styles.module.css";
function Demo() {
return (
<Layout description="hyperglass demo" keywords={["hyperglass", "demo"]}>
<header className={classnames("hero", styles.heroBanner)}>
<div className={classnames("container", styles.smallerTitleContainer)}>
<h1 className={classnames("hero__title", styles.title)}>
Coming Soon!
</h1>
<h2
className={classnames(
"hero__subtitle",
styles.subTitle,
styles.smallerTitle
)}
>
<span className={styles.tagPrimary}>hyperglass 1.0</span> is still
in progress, but the demo will be made available soon.
</h2>
<div className={styles.buttons}>
<Link
className={classnames(
"button button--outline button--secondary button--lg",
styles.homeBtn,
styles.btnSecondary
)}
to={useBaseUrl("docs/getting-started")}
>
Back to the Docs
</Link>
</div>
</div>
</header>
<main>
<section className={styles.content}>
<div className="container">
<div className="row">
<div className={classnames("col col--4")}>
<section className={styles.content}>
<div className="container">
<div className="row">
<div className={classnames("col col--12")}></div>
</div>
</div>
</section>
</div>
<div className={classnames("col col--8")}></div>
</div>
</div>
</section>
</main>
</Layout>
);
}
export default Demo;