diff options
-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: ( <> |