Bladeren bron

Rework Engine tab

Alessandro Pignotti 9 maanden geleden
bovenliggende
commit
a26b523053
1 gewijzigde bestanden met toevoegingen van 7 en 3 verwijderingen
  1. 7 3
      src/lib/CpuTab.svelte

+ 7 - 3
src/lib/CpuTab.svelte

@@ -1,8 +1,12 @@
 <script>
+	import PanelButton from './PanelButton.svelte';
 	import { cpuPercentage } from './activities.js'
 </script>
+
 <h1 class="text-lg font-bold">Engine</h1>
+<PanelButton buttonIcon="assets/cheerpx.svg" clickUrl="https://cheerpx.io/docs" buttonText="Explore CheerpX">
+</PanelButton>
 <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>
+<p>CheerpX is a x86 virtualization engine in WebAssembly</p>
+<p>It can securely run unmodified x86 binaries and libraries in the browser</p>
+<p>Excited about our technology? <a class="underline" href="https://cheerpx.io/docs/getting-started" target="_blank">Start building</a> your projects using <a class="underline" href="https://cheerpx.io/" target="_blank">CheerpX</a> today!</p>