+ Esolang Park checks the syntax of your source code{" "}
+ while you're typing. Any errors in the syntax of your program are
+ marked in the editor with a (mostly) useful error message, without
+ needing to run the program.
+
+ Esolang Park allows you to set debugging breakpoints in your code
+ . When you run your program and execution reaches a line with
+ breakpoint, the program will pause and you can inspect the state of the
+ program.
+
+
+ Click on the left of any line number to set a breakpoint on that line.
+ Click on the red circle to remove the breakpoint.
+
+ When your run a program, the "Run code" button changes to the
+ execution controls. Pause execution to{" "}
+
+ inspect the runtime state, start stepping through execution, change
+ the execution interval or stop execution entirely
+
+ .
+
+
+ The execution interval dictates how fast your program should be run by
+ Esolang Park. The smallest execution interval currently supported is
+ 5ms.
+
+ Click the document button to read a short introduction and view
+ reference links for the esolang. This also contains{" "}
+ notes about the implementation of this esolang, including any
+ incompatibilities and quirks you should take care of while debugging
+ your code.
+
+
+ Click the question mark button to view this guide at any point.
+
+ Esolang Park is an online interpreter and debugger interface{" "}
+ for esoteric programming languages. Think Repl.it, but a simpler
+ version for esoteric languages, with a visual debugger catered to
+ each language, that runs in your browser.
+
+
+ The goal of Esolang Park is to be a platform for esolang enthusiasts
+ to test and debug their code more easily, as well as for other
+ people to discover and play around with esoteric languages without
+ leaving the browser.
+
+
+ Esolang Park is very early in development, things are by no
+ means optimal, and there are most certainly bugs hanging around in
+ the source code. If you catch one, please create an issue on GitHub!
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
diff --git a/ui/header.tsx b/ui/header.tsx
index a433037..26e9429 100644
--- a/ui/header.tsx
+++ b/ui/header.tsx
@@ -3,6 +3,7 @@ import logoImg from "./assets/logo.png";
import { GitHubIcon } from "./custom-icons";
import { useDarkMode } from "./providers/dark-mode-provider";
import { Button, Card, Icon, Tag } from "@blueprintjs/core";
+import { useFeaturesGuide } from "./providers/features-guide-provider";
/** Link to the project's GitHub repository */
const REPO_LINK = "https://github.com/nilaymaj/esolang-park";
@@ -19,6 +20,7 @@ type Props = {
export const Header = (props: Props) => {
const DarkMode = useDarkMode();
+ const featuresGuide = useFeaturesGuide();
const brandSection = (