aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/docs/src/pages/index.tsx
blob: 632ee3d6146343fdcf4a8c121889b0bf5a128bd4 (plain) (blame)
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
/*
 * SPDX-FileCopyrightText: 2024 The Refinery Authors
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import Link from '@docusaurus/Link';
import Layout from '@theme/Layout';

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

export default function Home() {
  return (
    <Layout>
      <header className="hero hero--dark">
        <div className="container">
          <h1 className="hero__title">Refinery</h1>
          <p className="hero__subtitle">
            An efficient graph solver for generating well-formed models
          </p>
          <div className={styles['buttons']}>
            <Link
              href="https://refinery.services/"
              className="button button--lg button--primary"
            >
              Try online
            </Link>
            <Link
              to="/docs/docker"
              className="button button--lg button--secondary"
            >
              Try in Docker
            </Link>
            <Link
              to="/docs/tutorials/file-system"
              className="button button--lg button--secondary"
            >
              Tutorial
            </Link>
          </div>
        </div>
      </header>
    </Layout>
  );
}