diff options
author | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-17 16:44:45 +0100 |
---|---|---|
committer | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-17 16:44:45 +0100 |
commit | 640475abc65d73821ad70fd27379d6c648e399cc (patch) | |
tree | 2d79830c3e1bb6a0e980fa8abbd79e4b9211835d | |
parent | 0da1da59dcfb7fa0ff14999142a78ec25eedfdc9 (diff) | |
download | neohaskell.github.io-640475abc65d73821ad70fd27379d6c648e399cc.tar.gz neohaskell.github.io-640475abc65d73821ad70fd27379d6c648e399cc.tar.bz2 neohaskell.github.io-640475abc65d73821ad70fd27379d6c648e399cc.zip |
Add architecture feature
-rw-r--r-- | src/components/HomepageFeatures/coming-soon-features.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/components/HomepageFeatures/coming-soon-features.tsx b/src/components/HomepageFeatures/coming-soon-features.tsx index c487e2c..7be8399 100644 --- a/src/components/HomepageFeatures/coming-soon-features.tsx +++ b/src/components/HomepageFeatures/coming-soon-features.tsx @@ -69,6 +69,27 @@ Done! }, }, { + title: "Pre-thought architecture", + description: ( + <> + Whether you're building a command-line script, a backend, or a UI + application, NeoHaskell has the architecture pre-thought, for you. Just + generate your project from one of our templates, or just follow the + guides in the documentation to setup your project for success! + </> + ), + buttonText: "Don't reinvent the wheel", + showcase: { + language: "haskell", + code: `main = eventSourcing + { entities = myEntities + , events = myEvents + , reducer = myReducer + , ... + } |> runApp`, + }, + }, + { title: "Python interop", description: ( <> |