36661-vm/index.php
2025-12-04 19:25:43 +00:00

40 lines
1.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GenFleet IoT Command Center</title>
<!-- PrimeReact CSS -->
<link rel="stylesheet" href="https://unpkg.com/primereact/resources/themes/lara-dark-indigo/theme.css">
<link rel="stylesheet" href="https://unpkg.com/primereact/resources/primereact.min.css">
<link rel="stylesheet" href="https://unpkg.com/primeicons/primeicons.css">
<link rel="stylesheet" href="https://unpkg.com/primeflex/primeflex.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="src/App.css">
<!-- React and Babel for JSX in browser -->
<script src="https://unpkg.com/react@18/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://unpkg.com/primereact/core/core.min.js"></script>
<script src="https://unpkg.com/primereact/button/button.min.js"></script>
<script src="https://unpkg.com/primereact/card/card.min.js"></script>
<script src="https://unpkg.com/primereact/inputtext/inputtext.min.js"></script>
<script src="https://unpkg.com/react-router-dom@6/dist/umd/react-router-dom.min.js"></script>
</head>
<body>
<div id="root"></div>
<!-- Load App.js which will import other components -->
<script type="text/babel" data-type="module" data-presets="react" data-plugins="transform-modules-umd" src="src/App.js"></script>
<script type="text/babel">
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(React.createElement(App));
</script>
</body>
</html>