9 lines
460 B
Svelte
9 lines
460 B
Svelte
<script>
|
|
import { cpuPercentage } from './activities.js'
|
|
</script>
|
|
<h1 class="text-lg font-bold">Engine</h1>
|
|
<p><span class="font-bold">Load: </span>{$cpuPercentage}%</p>
|
|
<p>WebVM is powered by CheerpX, a x86 virtualization engine in WebAssembly</p>
|
|
<p>CheerpX can run securely run unmodified x86 binaries and libraries in the browser</p>
|
|
<p>For more information: <a class="text-gray-300" href="https://cheerpx.io/" target="_blank">https://cheerpx.io</a></p>
|