aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/docs/src/pages/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/docs/src/pages/index.tsx')
-rw-r--r--subprojects/docs/src/pages/index.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/subprojects/docs/src/pages/index.tsx b/subprojects/docs/src/pages/index.tsx
new file mode 100644
index 00000000..256d12ac
--- /dev/null
+++ b/subprojects/docs/src/pages/index.tsx
@@ -0,0 +1,19 @@
1/*
2 * SPDX-FileCopyrightText: 2024 The Refinery Authors
3 *
4 * SPDX-License-Identifier: EPL-2.0
5 */
6
7import Layout from '@theme/Layout';
8
9export default function Home() {
10 return (
11 <Layout>
12 <div className="hero hero--dark">
13 <div className="container">
14 <h1 className="hero__title">Refinery</h1>
15 </div>
16 </div>
17 </Layout>
18 );
19}