From 19cb526b6ea5b67f6296b3a2937bbbd1aa165707 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Tue, 9 Apr 2024 21:42:26 +0200 Subject: refactor(docs): landing page --- subprojects/docs/src/pages/index.tsx | 92 +++++++++++++++++++----------------- 1 file changed, 49 insertions(+), 43 deletions(-) diff --git a/subprojects/docs/src/pages/index.tsx b/subprojects/docs/src/pages/index.tsx index 5190b88b..25884336 100644 --- a/subprojects/docs/src/pages/index.tsx +++ b/subprojects/docs/src/pages/index.tsx @@ -13,6 +13,54 @@ import { useState } from 'react'; import styles from './index.module.css'; import videoCover from './video-cover.webp?url'; +function Hero() { + return ( +
+
+

Refinery

+

+ An efficient graph solver for generating well-formed models +

+
+ + Try online + + + Try in Docker + + + Tutorial + +
+
+
+ ); +} + function Video() { const [started, setStarted] = useState(false); return ( @@ -61,49 +109,7 @@ function Video() { export default function Home() { return ( -
-
-

Refinery

-

- An efficient graph solver for generating well-formed models -

-
- - Try online - - - Try in Docker - - - Tutorial - -
-
-
+
); -- cgit v1.2.3-54-g00ecf