aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.tsx
blob: cbff74cc47a5482a528d05cebbc9ebeb1c0bba28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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 CodeBlock from "@theme/CodeBlock";

import styles from "./index.module.css";
import Frame from "../components/Frame";
import Button from "../components/Button";
import CodeFrame from "../components/CodeFrame";
import Dialog from "../components/Dialog";
import Modal from "../components/Modal";

const dynC = (className: string, color: string) =>
  `dark:${className}-dark${color} ${className}-light${color}`;

function HomepageHeader() {
  const { siteConfig } = useDocusaurusContext();
  return (
    <header className={`${dynC("text", "text")}`}>
      <div className="px-8 my-24">
        <div className="mb-10">
          <div className="">
            <h1 className="text-center tracking-supatight leading-relaxed lg:text-7xl md:text-6xl sm:text-5xl text-3xl">
              A language that triggers
              <br />
              <span className="dark:text-darkprimary text-lightsecondary underline decoration-wavy underline-offset-8">
                flow state.
              </span>
            </h1>
          </div>
        </div>
      </div>
      <div className="mx-auto mb-4 lg:w-2/3">
        <Frame rainbow>
          <p className="text-center md:text-2xl sm:text-xl text-lg justify-normal my-10 mx-auto md:w-3/4">
            Triggering joy with every event, with elegance in every line. You
            put the creativity, NeoHaskell gives you the reliability.{" "}
            <strong>Learn on the fly, ship whenever you want.</strong>
          </p>
        </Frame>
      </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>
          </Button>
        </Link>
      </div>
    </header>
  );
}

export default function Home(): JSX.Element {
  const { siteConfig } = useDocusaurusContext();
  const [disclaimerOpen, setDisclaimerOpen] = React.useState(false);
  const message = "";
  return (
    <div className="container">
      <div className="absolute left-1/2 top-1/2">
        <Modal
          open={disclaimerOpen}
          okText="Continue on my own"
          onOk={() => setDisclaimerOpen(!disclaimerOpen)}
          title="Greetings traveller!"
        >
          <p>
            You probably found this site by accident. It is far from finished,
            but if you're curious about the project:
          </p>
          <a
            className="text-lightsecondary hover:underline hover:decoration-wavy underline-offset-4 py-4 block"
            href="https://discord.com/invite/wDj3UYzec8"
            target="_blank"
            onClick={() => setDisclaimerOpen(!disclaimerOpen)}
          >
            <h3>JOIN THE DISCORD SERVER!</h3>
          </a>
        </Modal>
      </div>
      <Layout description={`${siteConfig.tagline}`}>
        <HomepageHeader />
        <main className="pt-32">
          <HomepageFeatures />
        </main>
      </Layout>
    </div>
  );
}