From 640475abc65d73821ad70fd27379d6c648e399cc Mon Sep 17 00:00:00 2001 From: Nikita Tchayka Date: Sun, 17 Sep 2023 16:44:45 +0100 Subject: Add architecture feature --- .../HomepageFeatures/coming-soon-features.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 @@ -68,6 +68,27 @@ Done! text [] "Hello World!"`, }, }, + { + 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: ( -- cgit