aboutsummaryrefslogtreecommitdiff
path: root/docs/src/pages/index.tsx
blob: fbe6e5ecf07606b89fad4eaa3831e719e8c2dded (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
import type { ReactNode } 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 Heading from "@theme/Heading";

import styles from "./index.module.css";

function HomepageHeader() {
  const { siteConfig } = useDocusaurusContext();
  return (
    <header className={clsx("hero hero--primary", styles.heroBanner)}>
      <div className="container">
        <Heading as="h1" className="hero__title">
          {siteConfig.title}
        </Heading>
        <p className="hero__subtitle">{siteConfig.tagline}</p>
        <div className={styles.buttons}>
          <Link className="button button--secondary button--lg" to="/docs/">
            Get started
          </Link>
        </div>
      </div>
    </header>
  );
}

export default function Home(): ReactNode {
  const { siteConfig } = useDocusaurusContext();
  return (
    <Layout
      title={`Anubis: self hostable scraper defense software`}
      description="Weigh the soul of incoming HTTP requests using proof-of-work to stop AI crawlers"
    >
      <HomepageHeader />
      <main>
        <HomepageFeatures />

        <center>
          <p>
            This is all placeholder text. It will be fixed. Give me time. I am
            one person and my project has unexpectedly gone viral.
          </p>
        </center>
      </main>
    </Layout>
  );
}