From 9dd8714d2937bbf87191d203f37cce57a5da0f71 Mon Sep 17 00:00:00 2001 From: Florence Haudin Date: Wed, 10 Jun 2026 20:01:28 +0200 Subject: [PATCH] Add a legal page. --- src/components/footer/Footer.tsx | 7 +++-- src/pages/legal.module.css | 14 +++++++++ src/pages/legal.tsx | 54 ++++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 src/pages/legal.module.css create mode 100644 src/pages/legal.tsx diff --git a/src/components/footer/Footer.tsx b/src/components/footer/Footer.tsx index f864a398..81143fdb 100644 --- a/src/components/footer/Footer.tsx +++ b/src/components/footer/Footer.tsx @@ -9,7 +9,7 @@ export function SocialMediasQuantStack() { return (
Follow us on
-
+
{} {} @@ -27,10 +27,13 @@ export default function Footer() {
+
+ Legal +
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 ( + + {() =>
+ +
}
+