File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 1- open LandingPage
1+ module Intro = {
2+ @react.component
3+ let make = () => {
4+ <section className = "flex justify-center" >
5+ <div className = "max-w-1060 flex flex-col items-center px-5 sm:px-8 lg:box-content" >
6+ <h1 className = "hl-title text-center max-w-212" >
7+ {React .string ("Fast, Simple, Fully Typed JavaScript from the Future" )}
8+ </h1 >
9+ <h2 className = "body-lg text-center text-gray-60 my-4 max-w-md" >
10+ {React .string (` ReScript is a robustly typed language that compiles to efficient
11+ and human-readable JavaScript. It comes with a lightning fast
12+ compiler toolchain that scales to any codebase size.` )}
13+ </h2 >
14+ <div className = "mt-4 mb-2" >
15+ <ReactRouter .Link to = # "docs/manual/installation" >
16+ <Button > {React .string ("Get started" )} </Button >
17+ </ReactRouter .Link >
18+ </div >
19+ </div >
20+ </section >
21+ }
22+ }
223
324module PlaygroundHero = {
425 type example = {
You can’t perform that action at this time.
0 commit comments