From 351299ba131dcf01cae0b9a166e4947732a70130 Mon Sep 17 00:00:00 2001 From: Nick Tchayka Date: Thu, 31 Aug 2023 15:50:07 +0100 Subject: Style a bit --- src/pages/index.tsx | 52 +++++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 25 deletions(-) (limited to 'src/pages') diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 1448b3b..6ee548c 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -9,6 +9,7 @@ import CodeBlock from "@theme/CodeBlock"; import styles from "./index.module.css"; import Frame from "../components/Frame"; import Button from "../components/Button"; +import CodeFrame from "../components/CodeFrame"; const dynC = (className: string, color: string) => `dark:${className}-dark${color} ${className}-light${color}`; @@ -20,28 +21,30 @@ function HomepageHeader() {
-

- Don't fear shipping{" "} - +

+ 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. -

-

-
- - - -
+
+
+ +

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

+ +
+
+ + +
); @@ -54,17 +57,16 @@ export default function Home(): JSX.Element {
- -

Hello, World!

- -
- - {`module Main where + + {`module Main where main :: IO () main = putStrLn "Hello, World!"`} - -
+

If you're reading this, you probably found it by accident. This is a -- cgit