1+ import { CodeFile } from "@components/block/code-file" ;
12import { Section } from "@components/kit/section" ;
3+ import { Container } from "@components/ui/structure/container" ;
24import { Heading } from "@components/ui/text/heading" ;
3- import { LineBreak } from "@components/ui/text/line-break" ;
45import { Text } from "@components/ui/text/text" ;
56import { useClasses } from "@styles" ;
67
@@ -11,36 +12,29 @@ export function About() {
1112 What's GraphScript?
1213 </ Heading >
1314
14- < Text >
15- < Text >
16- Software development is about solving problems and building
17- solutions, not just writing code. It's more inclined towards
18- building logical workflows and processes, rather than just
19- writing lines of code.
20- </ Text >
15+ < Container className = { useClasses ( "about-content" ) } >
16+ < Container className = { useClasses ( "about-visual" ) } >
17+ < CodeFile
18+ fileName = "AI-Chatbot-Logic.gsam"
2119
22- < LineBreak />
23- < Text >
24- GraphScript is a visual scripting ecosystem that focuses on
25- the logical and flow aspects of software development rather than
26- the typical code-centric approach.
27- </ Text >
20+ code = { [
21+ "Wait for input" ,
22+ "Send input to AI" ,
23+ "Receive output from AI" ,
24+ "Send output to user" ,
25+ "Go to Start and repeat" ,
26+ ] }
27+ />
28+ </ Container >
2829
29- < LineBreak />
30- < Text >
31- It provides a visual interface where developers can create
32- complex workflows and processes by creating and connecting nodes
33- that represent different operations, data transformations, and
34- control flow elements.
35- </ Text >
36-
37- < LineBreak />
38- < Text >
39- This allows developers to focus on the logical structure of their
40- applications without getting bogged down in the syntax and details
41- of writing code.
42- </ Text >
43- </ Text >
30+ < Container className = { useClasses ( "about-description" ) } >
31+ < Text className = { useClasses ( "about-text" ) } >
32+ Instead of Syntax that only computer, god and for a small
33+ period of time a few humans can understand, use flowcharts
34+ to write your code.
35+ </ Text >
36+ </ Container >
37+ </ Container >
4438 </ Section >
4539 ) ;
4640}
0 commit comments