added full keycloak support. Partial Quantum backend support, Moved to

.env for config

- removed the globalVars variable for a lack of need
- changed the documentation page for test of multilevel navigation
- added machines page to route
- cleaned up dependencies for build
- changed config to split imports
This commit is contained in:
2026-04-26 16:25:02 +03:00
parent 8e78b8cb47
commit 8449da8373
33 changed files with 863 additions and 417 deletions

View File

View File

@@ -0,0 +1,31 @@
import { Helmet } from "react-helmet";
import "./DevicesPage.css";
import { PaginationContainer } from "Components/PaginationContainer/PaginationContainer";
import { Alert } from "@mantine/core";
import { Link } from "react-router";
function DevicesPage() {
return (
<>
<Helmet>
<title>Device Page | QMolSim</title>
<meta
name="description"
content="Get all the devices connected to your or your team account"
/>
</Helmet>
<div className="DevicesPage">
<PaginationContainer numberOfPages={1}>
<Alert title="Подключенные устройства не найдены" color="blue">
Для того, чтобы добавить устройство, простмотрите{" "}
<Link to={"documentaion"} className="invisible_link">
документацию
</Link>
</Alert>
</PaginationContainer>
</div>
</>
);
}
export default DevicesPage;