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:
@@ -24,12 +24,7 @@ const docusaurusConfig = {
|
|||||||
links: [
|
links: [
|
||||||
{ to: "docs/introduction", label: "Docs", position: "left" },
|
{ to: "docs/introduction", label: "Docs", position: "left" },
|
||||||
{ to: "screenshots", label: "Screenshots", 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: {
|
footer: {
|
||||||
|
@@ -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;
|
|
Reference in New Issue
Block a user