|
| 1 | +import "./style.css"; |
| 2 | + |
| 3 | +export function GSAbout() { |
| 4 | + return (<> |
| 5 | + <div className="gs-section"> |
| 6 | + <h1 className="gs-section-title"> |
| 7 | + What is GraphScript? |
| 8 | + </h1> |
| 9 | + |
| 10 | + <div className="gs-section-content"> |
| 11 | + <p> |
| 12 | + GraphScript is a scripting language designed to simplify the development |
| 13 | + of applications by focusing on logic rather than syntax. It provides a |
| 14 | + powerful and intuitive visual programming environment that allows |
| 15 | + developers to create applications with ease. |
| 16 | + </p> |
| 17 | + |
| 18 | + <p> |
| 19 | + Instead of writing code line by line, users define scripts by visually |
| 20 | + linking components like conditions, actions, loops, and I/O elements. Each |
| 21 | + node represents a component, and connections between them define the |
| 22 | + execution flow. |
| 23 | + </p> |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + |
| 27 | + <div className="gs-section"> |
| 28 | + <h1 className="gs-section-title"> |
| 29 | + The Ecosystem |
| 30 | + </h1> |
| 31 | + |
| 32 | + <div className="gs-section-content"> |
| 33 | + <p> |
| 34 | + The GraphScript ecosystem includes a variety of tools and libraries that |
| 35 | + enhance the development experience. These tools are designed to work |
| 36 | + seamlessly with each other, providing a cohesive environment for building |
| 37 | + applications. |
| 38 | + </p> |
| 39 | + |
| 40 | + <p> |
| 41 | + The tools include a visual editor for creating scripts, a console for |
| 42 | + testing each project, a launcher for managing projects, and a runtime |
| 43 | + environment that includes the GraphScript compiler and capable of |
| 44 | + updating the entire ecosystem. |
| 45 | + </p> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div className="gs-section"> |
| 50 | + <h1 className="gs-section-title"> |
| 51 | + Open Source |
| 52 | + </h1> |
| 53 | + |
| 54 | + <div className="gs-section-content"> |
| 55 | + <p> |
| 56 | + GraphScript is an open-source project, which means that anyone can |
| 57 | + contribute to its development. The source code is available on GitHub, |
| 58 | + and contributions are welcome from developers of all skill levels. |
| 59 | + </p> |
| 60 | + </div> |
| 61 | + </div> |
| 62 | + </>); |
| 63 | +} |
0 commit comments