Skip to content

Commit

Permalink
feat: update Home.js (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
magnus-madsen authored Dec 28, 2023
1 parent 6d6b483 commit b83526f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
Binary file added public/logo/java.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 36 additions & 1 deletion src/page/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,41 @@ let r = query p select (c, d) from ReadyDate(c; d)
</Col>
</Row>


<hr className="mb-3"/>

<Row className="mb-3">
<Col md={6}>
<CardImg src="/logo/java.png" alt="Java Logo" className="p-4"/>
</Col>
<Col md={6}>
<h2>Flix runs on Java</h2>

<p>
Flix targets the Java Virtual Machine (JVM) for a multitude of reasons:
</p>

<ul>
<li>The JVM has multiple battle-tested, open-source and commercial implementations,
including OpenJDK, J9, Azul, Graal, and more.
</li>
<li>JVMs exists for all platforms: Mac, Linux, and Windows.</li>
<li>
Modern JVMs feature multiple state-of-the-art garbage collectors.
</li>
<li>Modern JVMs have excellent support for concurrency and parallelism. In particular,
light-weight threads added in Java 21.
</li>
<li>
Excellent tool support, including debuggers and profilers.
</li>
<li>The Java Platform comes with a rich ecosystem of packages which is accessible thru
integration with Maven.
</li>
</ul>
</Col>
</Row>

<hr className="mb-3"/>

<Row className="mb-3">
Expand All @@ -882,7 +917,7 @@ let r = query p select (c, d) from ReadyDate(c; d)
</ul>
</Col>
<Col md={6} className="align-self-center">
<h4 className="text-center">Total Funding: <span className="text-success font-weight-bold">€1.3 million</span>
<h4 className="text-center">Total Funding: <span className="text-success font-weight-bold">€1.1 million</span>
</h4>

<p className="mt-3 small text-center">
Expand Down

0 comments on commit b83526f

Please sign in to comment.