Files
url_tracker_tool/node_modules/cytoscape/playwright-page/index.html
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

38 lines
752 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<style>
body {
font-family: helvetica, arial, sans-serif;
}
#cytoscape {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
</style>
<script src="../build/cytoscape.umd.js"></script>
<title>cytoscape.js playwright page</title>
</head>
<body>
<div id="cytoscape"></div>
<script>
window.cy = cytoscape({
container: document.getElementById('cytoscape')
});
</script>
</body>
</html>