diff --git a/index.html b/index.html
index 0b6c31b..93f38ff 100644
--- a/index.html
+++ b/index.html
@@ -25,25 +25,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/scripts/elements.js b/scripts/elements.js
index c20cc6d..a52691b 100644
--- a/scripts/elements.js
+++ b/scripts/elements.js
@@ -48,18 +48,6 @@ class Instance extends HTMLElement {
nodeParagraph.innerText = data.node.name;
this.node = data.node.name;
- let resourceCPU = this.shadowElement.querySelector("#resource-cpu");
- resourceCPU.innerText = data.cpus;
-
- let resourceRAM = this.shadowElement.querySelector("#resource-ram");
- resourceRAM.innerText = (data.maxmem / 1073741824).toFixed(3);
-
- let resourceSWAP = this.shadowElement.querySelector("#resource-swap");
- resourceSWAP.innerText = (data.maxswap / 1073741824).toFixed(3);
-
- let resourceDISK = this.shadowElement.querySelector("#resource-disk");
- resourceDISK.innerText = (data.maxdisk / 1073741824).toFixed(3);
-
let powerButton = this.shadowElement.querySelector("#power-btn");
powerButton.src = data.status === "running" ? "images/actions/stop.svg" : "images/actions/start.svg";
powerButton.alt = data.status === "running" ? "shutdown instance" : "start instance";