diff options
author | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-14 23:01:22 +0100 |
---|---|---|
committer | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-14 23:01:22 +0100 |
commit | 71dfeb721d271dd58c5e2f4f26cff1fe407eef80 (patch) | |
tree | 2065223910ccd8a49b4d05a6ce2d3425715835ec /src/pages | |
parent | b32489e304cc34ce965ae4f5027a7ba374cea173 (diff) | |
download | neohaskell.github.io-71dfeb721d271dd58c5e2f4f26cff1fe407eef80.tar.gz neohaskell.github.io-71dfeb721d271dd58c5e2f4f26cff1fe407eef80.tar.bz2 neohaskell.github.io-71dfeb721d271dd58c5e2f4f26cff1fe407eef80.zip |
Start roadmap
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/index.tsx | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ba6224c..60e7a7d 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -12,6 +12,7 @@ import Button from "../components/Button"; import CodeFrame from "../components/CodeFrame"; import Dialog from "../components/Dialog"; import Modal from "../components/Modal"; +import Disclaimer from "../components/Disclaimer"; const dynC = (className: string, color: string) => `dark:${className}-dark${color} ${className}-light${color}`; @@ -48,10 +49,21 @@ function HomepageHeader() { </p> </Frame> </div> + <div className="width-full my-20"> + <iframe + className="mx-auto" + width="560" + height="315" + src="https://www.youtube.com/embed/VM-2OVNt-eQ?si=A7JKcVobgEpi1fvt" + title="YouTube video player" + allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" + allowFullScreen + /> + </div> <div className="relative text-center mx-auto my-24"> <Link to="/docs/intro"> <Button color="yellow" rounded="full" size="lg"> - <h2 className="mx-4 my-2 text-2xl">Get Started!</h2> + <h2 className="mx-4 my-2 text-2xl">Read the Dogma</h2> </Button> </Link> </div> @@ -62,13 +74,15 @@ function HomepageHeader() { export default function Home(): JSX.Element { const { siteConfig } = useDocusaurusContext(); return ( - <div className="container"> - <Layout description={`${siteConfig.tagline}`}> + <Layout description={`${siteConfig.tagline}`}> + <div className="container"> + <Disclaimer /> <HomepageHeader /> + <main className="pt-32"> <HomepageFeatures /> </main> - </Layout> - </div> + </div> + </Layout> ); } |