Initial commit

This commit is contained in:
2026-03-16 22:05:19 +03:00
commit 8e78b8cb47
71 changed files with 7846 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
.TeamsPage {
flex-grow: 1;
display: flex;
}

View File

@@ -0,0 +1,22 @@
import { Helmet } from "react-helmet";
import "./TeamsPage.css";
import { PaginationContainer } from "Components/PaginationContainer/PaginationContainer";
function TeamsPage() {
return (
<>
<Helmet>
<title>Teams Page | QMolSim</title>
<meta
name="description"
content="See the documentation on how to setup and use the qunatum computational system"
/>
</Helmet>
<div className="TeamsPage">
<PaginationContainer />
</div>
</>
);
}
export default TeamsPage;