diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx new file mode 100644 index 0000000..841dc61 --- /dev/null +++ b/frontend/src/main.jsx @@ -0,0 +1,21 @@ +import React from "react"; +import { createRoot } from "react-dom/client"; +import "./styles.css"; + +function App() { + return ( +
+
+

Proxmox VPS Panel

+

Защищённая версия панели готова к подключению API.

+

Следующий этап — перенос экранов авторизации, шаблонов и инстансов.

+
+
+ ); +} + +createRoot(document.getElementById("root")).render( + + + , +);