Skip to content

Commit

Permalink
More bandwidth & Add more compilers (doc soon)
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Jul 19, 2023
1 parent aec80e5 commit cba4fe3
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/deployment/bun.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Bun
sidebar_position: 9
---
4 changes: 4 additions & 0 deletions docs/deployment/dotnet.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: .NET
sidebar_position: 10
---
4 changes: 4 additions & 0 deletions docs/deployment/java.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Java
sidebar_position: 11
---
4 changes: 4 additions & 0 deletions docs/deployment/zig.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Zig
sidebar_position: 12
---
27 changes: 26 additions & 1 deletion src/components/home/Home2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ import IcRuby from "simple-icons/icons/ruby.svg";
import IcGo from "simple-icons/icons/go.svg";
import IcRust from "simple-icons/icons/rust.svg";
import IcDeno from "simple-icons/icons/deno.svg";
import IcBun from "simple-icons/icons/bun.svg";
import IcJava from "simple-icons/icons/openjdk.svg";
import IcDotNet from "simple-icons/icons/dotnet.svg";
import IcZig from "simple-icons/icons/zig.svg";

import IcSqlite from "simple-icons/icons/sqlite.svg";
import IcMariaDB from "simple-icons/icons/mariadb.svg";
import IcPostgre from "simple-icons/icons/postgresql.svg";
Expand All @@ -21,7 +26,7 @@ export default function Home2() {
This is not an optimistic hosting service that only works for a specific code language.<br />
Anything than can <u>run in linux</u>, can be <u>hosted here</u>.
</p>
<p><small>Officially supported software languages</small></p>
<p><small>Officially supported software compilers</small></p>
<div className="container mt-3 mb-5">
<div className="row">
<div className="col-3 my-2">
Expand Down Expand Up @@ -64,6 +69,26 @@ export default function Home2() {
<IcDeno height={80} />
</a>
</div>
<div className="col-3 my-2">
<a href="/docs/deployment/bun">
<IcBun height={80} />
</a>
</div>
<div className="col-3 my-2">
<a href="/docs/deployment/java">
<IcJava height={80} />
</a>
</div>
<div className="col-3 my-2">
<a href="/docs/deployment/dotnet">
<IcDotNet height={80} />
</a>
</div>
<div className="col-3 my-2">
<a href="/docs/deployment/zig">
<IcZig height={80} />
</a>
</div>
</div>
</div>
<p><small>Builtin database instances</small></p>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/price.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Pricing() {
<FaHdd /> <span><b>3 GiB</b> Total Storage</span>
</div>
<div className="item">
<FaGlobe /> <span><b>15 GiB</b> Data Network / month</span>
<FaGlobe /> <span><b>20 GiB</b> Data Network / month</span>
</div>
<div className="item">
<FaBrief /> <span>Maximum of <b>6 instances</b></span>
Expand All @@ -67,7 +67,7 @@ export default function Pricing() {
<FaHdd /> <span><b>10 GiB</b> Total Storage</span>
</div>
<div className="item">
<FaGlobe /> <span><b>50 GiB</b> Data Network / month</span>
<FaGlobe /> <span><b>100 GiB</b> Data Network / month</span>
</div>
<div className="item">
<FaBrief /> <span>Maximum of <b>10 instances</b></span>
Expand All @@ -94,7 +94,7 @@ export default function Pricing() {
<FaHdd /> <span><b>30 GiB</b> Total Storage</span>
</div>
<div className="item">
<FaGlobe /> <span><b>150 GiB</b> Data Network / month</span>
<FaGlobe /> <span><b>500 GiB</b> Data Network / month</span>
</div>
<div className="item">
<FaBrief /> <span>Maximum of <b>25 instances</b></span>
Expand Down

0 comments on commit cba4fe3

Please sign in to comment.