diff --git a/src/pages/legal.module.css b/src/pages/legal.module.css
new file mode 100644
index 00000000..a51bd903
--- /dev/null
+++ b/src/pages/legal.module.css
@@ -0,0 +1,14 @@
+.legal_container {
+ margin: var(--ifm-spacing-3xl)
+}
+
+.legal_title {
+ margin-bottom: var(--ifm-spacing-sm);
+ margin-top: var(--ifm-spacing-md);
+ font-family: var(--ifm-font-family-roboto);
+ font-size: var(--ifm-font-size-secondary-title);
+ font-weight: bolder;
+ line-height: 150%;
+ text-align: start;
+ color: var(--ifm-color-primary-p2);
+}
\ No newline at end of file
diff --git a/src/pages/legal.tsx b/src/pages/legal.tsx
new file mode 100644
index 00000000..80f79d7c
--- /dev/null
+++ b/src/pages/legal.tsx
@@ -0,0 +1,54 @@
+import Layout from "@theme/Layout";
+import BrowserOnly from "@docusaurus/BrowserOnly";
+import Footer from "../components/footer/Footer";
+import React from "react";
+import styles from "./legal.module.css";
+
+
+function LegalContent() {
+ return (
+
+
Legal Entity
+
+ This website is published by QuantStack, a Simplified Joint-Stock Company (SAS) with a share capital of €1,080.00.
+
+
+ Registered Information
+
+
+ Address : 16 Avenue Curti, 94100 Saint-Maur-des-Fossés, France
+
+
+ VAT Number: FR76 820 717 668
+
+
+ SIREN (Company ID): 820 717 668
+
+
Hosting Provider
+
+ This website is hosted by GitHub, Inc.
+
+
+
Registered information
+
Address : 8 Colin P. Kelly Jr Street
+ San Francisco, CA 94107
+ United States
+
+ Email : https://enterprise.github.com/contact
+
+
+ )
+}
+
+
+
+export default function LegalPage(): JSX.Element {
+ return (
+