aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/docs/src/pages/index.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-04-09 16:07:45 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-04-09 16:07:45 +0200
commit4ce6123378600e6fa5a6543dbf7c45a49e11076e (patch)
treea18575c02e82ce13727cd67012901b7bc8e3b324 /subprojects/docs/src/pages/index.tsx
parentdocs: add Docusaurus website (diff)
downloadrefinery-4ce6123378600e6fa5a6543dbf7c45a49e11076e.tar.gz
refinery-4ce6123378600e6fa5a6543dbf7c45a49e11076e.tar.zst
refinery-4ce6123378600e6fa5a6543dbf7c45a49e11076e.zip
docs: basic theme and structure
Diffstat (limited to 'subprojects/docs/src/pages/index.tsx')
-rw-r--r--subprojects/docs/src/pages/index.tsx30
1 files changed, 28 insertions, 2 deletions
diff --git a/subprojects/docs/src/pages/index.tsx b/subprojects/docs/src/pages/index.tsx
index 256d12ac..632ee3d6 100644
--- a/subprojects/docs/src/pages/index.tsx
+++ b/subprojects/docs/src/pages/index.tsx
@@ -4,16 +4,42 @@
4 * SPDX-License-Identifier: EPL-2.0 4 * SPDX-License-Identifier: EPL-2.0
5 */ 5 */
6 6
7import Link from '@docusaurus/Link';
7import Layout from '@theme/Layout'; 8import Layout from '@theme/Layout';
8 9
10import styles from './index.module.css';
11
9export default function Home() { 12export default function Home() {
10 return ( 13 return (
11 <Layout> 14 <Layout>
12 <div className="hero hero--dark"> 15 <header className="hero hero--dark">
13 <div className="container"> 16 <div className="container">
14 <h1 className="hero__title">Refinery</h1> 17 <h1 className="hero__title">Refinery</h1>
18 <p className="hero__subtitle">
19 An efficient graph solver for generating well-formed models
20 </p>
21 <div className={styles['buttons']}>
22 <Link
23 href="https://refinery.services/"
24 className="button button--lg button--primary"
25 >
26 Try online
27 </Link>
28 <Link
29 to="/docs/docker"
30 className="button button--lg button--secondary"
31 >
32 Try in Docker
33 </Link>
34 <Link
35 to="/docs/tutorials/file-system"
36 className="button button--lg button--secondary"
37 >
38 Tutorial
39 </Link>
40 </div>
15 </div> 41 </div>
16 </div> 42 </header>
17 </Layout> 43 </Layout>
18 ); 44 );
19} 45}