File tree Expand file tree Collapse file tree 3 files changed +37
-5
lines changed Expand file tree Collapse file tree 3 files changed +37
-5
lines changed Original file line number Diff line number Diff line change 11import { Navbar } from "@components/Navbar"
22import { Hero } from "@components/Hero"
33import { Future } from "@components/Future"
4+ import { Ecosystem } from "@components/Ecosystem"
45import { GSAbout } from "@components/GSAbout"
56
67export function App ( ) {
78 return ( < >
89 < Navbar />
910 < Hero />
1011 < Future />
12+ < Ecosystem />
1113 < GSAbout />
1214 </ > )
1315}
Original file line number Diff line number Diff line change 1+ import { Trees } from "lucide-react" ;
2+ import { Section } from "@components/Section" ;
3+
4+ export function Ecosystem ( ) {
5+ const contents = [
6+ [
7+ "The GraphScript ecosystem includes a variety of tools and libraries that" ,
8+ "enhance the development experience. These tools are designed to work" ,
9+ "seamlessly with each other, providing a cohesive environment for building" ,
10+ "applications." ,
11+ ] . join ( " " ) ,
12+ [
13+ "The tools include a visual editor for creating scripts, a console for" ,
14+ "testing each project, a launcher for managing projects, and a runtime" ,
15+ "environment that includes the GraphScript compiler and capable of" ,
16+ "updating the entire ecosystem." ,
17+ ] . join ( " " ) ,
18+ ] ;
19+
20+ return ( < >
21+ < Section
22+ icon = { < Trees /> }
23+ name = "The Ecosystem"
24+ >
25+ { contents . map ( text => < p key = { text } > { text } </ p > ) }
26+ </ Section >
27+ </ > ) ;
28+ }
29+
Original file line number Diff line number Diff line change 22 display : flex;
33 padding : 2rem ;
44 align-items : start;
5+ margin-bottom : 15rem ;
6+ }
7+
8+ .section : nth-child (even) {
9+ flex-direction : row-reverse;
510}
611
712.section-icon {
5762
5863@media (max-width : 1000px ) {
5964 .section {
60- flex-direction : column;
65+ flex-direction : column !important ;
6166 align-items : center;
6267 }
6368
7075 padding : 2rem ;
7176 width : 100% ;
7277 }
73-
74- .section-description {
75- text-wrap-style : balance;
76- }
7778}
7879
You can’t perform that action at this time.
0 commit comments