<svg class="network" width="100%" height="100%"></svg>
const width = window.innerWidth;
const height = window.innerHeight;
const svg = document.querySelector('svg');
const nodeArray = Object.values(nodes);
const processedLinks = links.map((link, index) => {
const sourceNode = nodes[link.source];
const targetNode = nodes[link.target];