From 6001682645bbfb52ffb19156e4d2598c8c075b85 Mon Sep 17 00:00:00 2001 From: Nick Tchayka Date: Wed, 30 Aug 2023 13:07:51 +0100 Subject: Update --- src/pages/index.tsx | 61 +++++++++++++++++++++++++++++------------------------ 1 file changed, 34 insertions(+), 27 deletions(-) (limited to 'src/pages') diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 2311302..8feca7c 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -7,37 +7,42 @@ import HomepageFeatures from "@site/src/components/HomepageFeatures"; import CodeBlock from "@theme/CodeBlock"; import styles from "./index.module.css"; -import Dialog from "../components/Dialog"; +import Frame from "../components/Frame"; +import Button from "../components/Button"; + +const dynC = (className: string, color: string) => + `dark:${className}-dark${color} ${className}-light${color}`; function HomepageHeader() { const { siteConfig } = useDocusaurusContext(); return ( -
-
-
-

- Don't fear shipping -
{" "} - - your prototype. - -

-
-

- Deliver your prototype in no time, then joyfully refactor when - needed.{" "} - NeoHaskell prioritizes programmer happiness. -

-
- - - +
+
+
+
+

+ Don't fear shipping +
{" "} + + the MVP. + +

+ +

+ From your head to the world in no time, without the fear of + future refactors.{" "} + NeoHaskell scales with your product. +

+
+
+ + + +
); @@ -46,11 +51,13 @@ function HomepageHeader() { export default function Home(): JSX.Element { const { siteConfig } = useDocusaurusContext(); return ( -
+
- + +

Hello, World!

+
{`module Main where -- cgit