import React from "react"; import clsx from "clsx"; import Link from "@docusaurus/Link"; import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; import Layout from "@theme/Layout"; import HomepageFeatures from "@site/src/components/HomepageFeatures"; import CodeBlock from "@theme/CodeBlock"; import styles from "./index.module.css"; 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
{" "} the MVP.

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

); } export default function Home(): JSX.Element { const { siteConfig } = useDocusaurusContext(); return (

Hello, World!

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

If you're reading this, you probably found it by accident. This is a WIP project, and the site is far from finished. If you're curious about the project, better join the{" "} Discord server !

); }