diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 3e7c43bc5..880c9e7bd 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -64,8 +64,7 @@ const config: Config = { title: "", logo: { alt: "QuantStack Logo", - src: "img/quantstack/logo-website-light.svg", - srcDark: "img/quantstack/logo-website-dark.svg" + src: "img/quantstack/logo-website.svg" }, items: [ @@ -219,7 +218,7 @@ const config: Config = { colorMode: { defaultMode: 'light', - disableSwitch: false, + disableSwitch: true, respectPrefersColorScheme: false, }, diff --git a/src/components/about/ArrowLeftHeader.tsx b/src/components/about/ArrowLeftHeader.tsx index 8275f0851..81972a597 100644 --- a/src/components/about/ArrowLeftHeader.tsx +++ b/src/components/about/ArrowLeftHeader.tsx @@ -1,23 +1,6 @@ import Link from "@docusaurus/Link"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import ThemedImage from "@theme/ThemedImage"; -import ArrowLeft from "@site/static/img/icons/ArrowLeft.svg" - -/*export function ArrowLeft() { - return ( - - ); -}*/ +import ArrowLeft from "@site/static/img/icons/ArrowLeft.svg" export default function ArrowLeftHeader({ route }) { return ( diff --git a/src/components/about/FourValues.tsx b/src/components/about/FourValues.tsx index b17b8964b..ac6f64ec6 100644 --- a/src/components/about/FourValues.tsx +++ b/src/components/about/FourValues.tsx @@ -1,90 +1,23 @@ import styles from "./styles.module.css"; - -import OpennessMD from "@site/src/components/about/Values/openness.md"; -import ScienceMD from "@site/src/components/about/Values/science.md"; -import IntegrityMD from "@site/src/components/about/Values/integrity.md"; -import OptimismMD from "@site/src/components/about/Values/optimism.md"; -/*import OpennessPicture from "@site/static/img/values/openness-light.svg"; -import SciencePicture from "@site/static/img/values/science-light.svg"; -import OptimismPicture from "@site/static/img/values/optimism-light.svg"; -import IntegrityPicture from "@site/static/img/values/integrity-light.svg";*/ import { ValueCardMobile } from "@site/src/components/about/ValueCard"; import { ValueCardDesktop } from "@site/src/components/about/ValueCard"; import { useEffect, useState } from "react"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import ThemedImage from "@theme/ThemedImage"; - -const valuesDescriptions = [OpennessMD, ScienceMD, IntegrityMD, OptimismMD]; -const valuesPictures = [ - OpennessPicture, - SciencePicture, - OptimismPicture, - IntegrityPicture, -]; +import { valuesDetails } from "./Values/valuesDetails"; -export function SciencePicture() { - return ( - - ); -} - -export function OpennessPicture() { - return ( - - ); -} - -export function IntegrityPicture() { - return ( - - ); -} - -export function OptimismPicture() { - return ( - - ); -} - */ -const valuesNames = ["Openness", "Science", "Optimism", "Integrity"]; const cardColors = ["white", "yellow", "white", "yellow"]; export function FourValuesMobile() { return (
    - {valuesNames.map((value, index) => ( + {valuesDetails.map((value, index) => (
  • @@ -106,14 +39,14 @@ export function FourValuesDesktop() {
      - {valuesNames.map((value, index) => ( + {valuesDetails.map((value, index) => (
    • diff --git a/src/components/about/ValueCard.tsx b/src/components/about/ValueCard.tsx index ddae627e3..7b1fba986 100644 --- a/src/components/about/ValueCard.tsx +++ b/src/components/about/ValueCard.tsx @@ -1,18 +1,18 @@ import styles from "./styles.module.css"; import { useEffect, useState } from "react"; -export function ValueCardDesktop({ value, ValuePicture, ValueComponent }) { +export function ValueCardDesktop({ value }) { return (
      - +
      {value}
      - +
      ); diff --git a/src/components/about/Values/valuesDetails.ts b/src/components/about/Values/valuesDetails.ts new file mode 100644 index 000000000..73830e956 --- /dev/null +++ b/src/components/about/Values/valuesDetails.ts @@ -0,0 +1,35 @@ +import OpennessMD from "@site/src/components/about/Values/openness.md"; +import ScienceMD from "@site/src/components/about/Values/science.md"; +import IntegrityMD from "@site/src/components/about/Values/integrity.md"; +import OptimismMD from "@site/src/components/about/Values/optimism.md"; +import OpennessPicture from "@site/static/img/values/openness.svg"; +import SciencePicture from "@site/static/img/values/science.svg"; +import OptimismPicture from "@site/static/img/values/optimism.svg"; +import IntegrityPicture from "@site/static/img/values/integrity.svg"; + +export const valuesDetails = [ + { + name: "Science", + alt: "Icon representing the science value, displaying an atom", + DescriptionMD: ScienceMD, + pictureComponent: SciencePicture, + }, + { + name: "Openness", + alt: "Icon representing the openness value, four people connected together.", + DescriptionMD: OpennessMD, + pictureComponent: OpennessPicture, + }, + { + name: "Integrity", + alt: "Icon representing the integrity value, with an heart inside a hand", + DescriptionMD: IntegrityMD, + pictureComponent: IntegrityPicture, + }, + { + name: "Optimism", + alt: "Icon representing the optimism value, with a smiling face ", + DescriptionMD: OptimismMD, + pictureComponent: OptimismPicture, + }, +]; diff --git a/src/components/contact/index.tsx b/src/components/contact/index.tsx index ccbcbe4b9..b65a68d41 100644 --- a/src/components/contact/index.tsx +++ b/src/components/contact/index.tsx @@ -1,20 +1,7 @@ import styles from "./styles.module.css"; import ContactForm from "./ContactForm"; import { useEffect, useState } from "react"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import ThemedImage from "@theme/ThemedImage"; - -export function ContactIllustration() { - return ( - - ); -} +import ContactIllustration from "/img/illustrations/contact.svg" const breakpointValue: number = 996; @@ -31,7 +18,7 @@ export function ContactDesktop() { padding: "var(--ifm-spacing-2xl)", }} > - +
; - } else return ; -} - -export function SimpleSliderLight() { - let settings = { - dots: true, - infinite: true, - speed: 1000, - slidesToShow: 1, - slidesToScroll: 1, - arrows: false, - autoplay: true, - }; - return ( - -
- -
-
- -
-
- -
-
- -
-
- ); -} - -export function SimpleSliderDark() { let settings = { dots: true, infinite: true, @@ -84,22 +48,22 @@ export function SimpleSliderDark() { return (
- +
- +
- +
- +
); } -export function LogosTable1Light() { +export function LogosTable1() { return (
@@ -125,12 +89,20 @@ export function LogosTable1Light() { />
- {"Logo + {"Logo
- {"Logo + {"Logo
-
- {"Logo -
-
- {"Logo -
-
-
- ); -} - -export function LogosTable1Dark() { - return ( -
-
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
{"Logo
- -
-
- + {"Logo
); } -export function LogosTable2Light() { +export function LogosTable2() { return (
@@ -200,82 +141,74 @@ export function LogosTable2Light() { src={UniversiteParisCiteLogoUrl} className={styles.customer_logo_light} alt={"Logo of Paris Cité Université."} - - />
-
- {"Logo -
-
- {"Logo -
-
- {"Logo -
-
-
-
- {"Logo -
-
- {"Logo -
-
- {"Logo -
-
- {"Logo -
-
- - ); -} - -export function LogosTable2Dark() { - return ( -
-
{"Logo
- -
-
- + {"Logo
- + {"Logo
- + {"Logo
- + {"Logo
- + {"Logo
- + {"Logo
); } -export function LogosTable3Light() { +export function LogosTable3() { return (
- {"Logo + {"Logo
- {"Logo + {"Logo
- {"Logo + {"Logo
@@ -302,65 +243,33 @@ export function LogosTable3Light() { style={{ width: "60px" }} />
-
- {"Logo -
-
- {"Logo -
-
- {"Logo -
-
-
- ); -} - -export function LogosTable3Dark() { - return ( -
-
-
- -
{"Logo
- -
- -
-
- -
-
-
{"Logo
- -
-
- -
-
- + {"Logo
); } -export function LogosTable4Light() { +export function LogosTable4() { return (
@@ -373,10 +282,18 @@ export function LogosTable4Light() { />
- {"Logo + {"Logo
- {"Logo + {"Logo
); } - -export function LogosTable4Dark() { - return ( -
-
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
-
- ); -} diff --git a/src/components/home/Hero/index.tsx b/src/components/home/Hero/index.tsx index e42492d22..6670d1eb3 100644 --- a/src/components/home/Hero/index.tsx +++ b/src/components/home/Hero/index.tsx @@ -1,23 +1,7 @@ import styles from "./styles.module.css"; import SimpleSlider from "./LogosTableBy8"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import ThemedImage from "@theme/ThemedImage"; import { useEffect, useState } from "react"; -/*import Astronaut from "/img/quantstack/astronaut-light.svg";*/ - - -export function Astronaut() { - return ( - - ); -} +import Astronaut from "/img/quantstack/astronaut.svg"; export function HeroDesktop() { return ( @@ -46,7 +30,7 @@ export function HeroDesktop() { "col col--3 col--offset-1" + " " + styles.astronaut_column } > - +
diff --git a/src/components/services/SpecialProjects.tsx b/src/components/services/SpecialProjects.tsx index 80bbe332e..d87b397c7 100644 --- a/src/components/services/SpecialProjects.tsx +++ b/src/components/services/SpecialProjects.tsx @@ -1,26 +1,10 @@ import styles from "./styles.module.css"; import SpecialProjectsMD from "./descriptions/SpecialProjects.md"; import { useEffect, useState } from "react"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import ThemedImage from "@theme/ThemedImage"; -/*import SpecialProjectsIllustration from "/img/illustrations/special-projects-light.svg";*/ +import SpecialProjectsIllustration from "@site/static/img/illustrations/special_projects.svg" const breakpointValue: number = 996; -export function SpecialProjectsIllustration() { - return ( - - ); -} - export function SpecialProjectsDesktop() { return (
@@ -31,7 +15,11 @@ export function SpecialProjectsDesktop() {
- +
diff --git a/src/components/services/Support.tsx b/src/components/services/Support.tsx index 8c27ed668..802340898 100644 --- a/src/components/services/Support.tsx +++ b/src/components/services/Support.tsx @@ -1,26 +1,10 @@ import styles from "./styles.module.css"; import SupportMD from "./descriptions/Support.md"; import { useEffect, useState } from "react"; -import useBaseUrl from "@docusaurus/useBaseUrl"; -import ThemedImage from "@theme/ThemedImage"; -/*import SupportIllustration from "/img/illustrations/support-light.svg"*/ +import SupportIllustration from "/img/illustrations/support.svg"; const breakpointValue: number = 996; -export function SupportIllustration() { - return ( - - ); -} - - export function SupportDesktop() { return (
@@ -28,7 +12,7 @@ export function SupportDesktop() {
- +
@@ -48,13 +32,13 @@ export function SupportMobile() {
- +
-

Professional Support

+

Professional Support

diff --git a/src/css/custom.css b/src/css/custom.css index 66e897586..467bbe90d 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -12,128 +12,71 @@ --ifm-color-orange-light: #fef9ec; --ifm-color-indigo-i1: rgb(79, 82, 255); --ifm-color-blue-b1: #b8c3ffff; - --ifm-color-primary-p1: #f6f195; - --ifm-color-primary-p1-dark-mode: #d0cb54; --ifm-color-primary-p2: #1c1c16; - --ifm-color-primary-p2-dark-mode: #d0cb54; --ifm-color-primary-p3: #1e1c00; --ifm-text-color-on-primary-p1: #1e1c00; - --ifm-text-color-on-primary-p1-dark-mode: #343200; --ifm-color-secondary-s1: #a0c9ff; /*--ifm-color-secondary-s2: #1861a1;*/ --ifm-color-secondary-s2: var(--ifm-color-blue-jupyter); - --ifm-color-secondary-s2-dark-mode: #b8c3ff; --ifm-color-secondary-s3: #002646; --ifm-color-neutral-n1: #605e58; --ifm-color-neutral-n2: #371300; + --ifm-text-color: var(--ifm-color-primary-p2); + --ifm-text-color-main-title: var(--ifm-color-primary-p2); + --ifm-background-color-value-card-yellow:var(--ifm-color-primary-p1); --ifm-background-color: white; - --ifm-background-color-dark-mode: #1c1c16; - - --ifm-text-color: #1c1c16; - --ifm-text-color-dark-mode: white; - - --ifm-text-color-main-title: #1c1c16; - --ifm-text-color-main-title-dark-mode: #fef9ec; - - --ifm-background-color-value-card-yellow: #f6f195; - --ifm-background-color-value-card-yellow-dark-mode: #4b4900; - --ifm-text-color-value-card-yellow: #1c1c16; - --ifm-text-color-value-card-yellow-dark-mode: #d0cb54; - --ifm-background-color-value-card-white: white; - --ifm-background-color-value-card-white-dark-mode: #1c1c16; - --ifm-text-color-value-card-white: #1c1c16; - --ifm-text-color-value-card-white-dark-mode: #d0cb54; - + --ifm-text-color-value-card-white: var(--ifm-color-primary-p2); --ifm-background-color-topics-card: #fef9ec; - --ifm-background-color-topics-card-dark-mode: #1c1c16; --ifm-text-color-topics-card: var(--ifm-color-neutral-n2); - --ifm-text-color-topics-card-dark-mode: #d0cb54; - --ifm-background-color-topics-card-yellow: var(--ifm-color-primary-p1); - --ifm-background-color-topics-card-yellow-dark-mode: #1c1c16; --ifm-text-color-topics-card-yellow: var(--ifm-color-neutral-n2); - --ifm-text-color-topics-card-yellow-dark-mode: var(--ifm-color-primary-p1); - --ifm-background-color-topics-card-white: white; - --ifm-background-color-topics-card-white-dark-mode: #4b4900; --ifm-text-color-topics-card-white: var(--ifm-color-neutral-n2); - --ifm-text-color-topics-card-white-dark-mode: white; - --ifm-background-color-small-portrait-card: white; - --ifm-background-color-small-portrait-card-dark-mode: #1c1c16; - --ifm-text-color-small-portrait-card: #1c1c16; - --ifm-text-color-small-portrait-card-dark-mode: #d0cb54; - + --ifm-text-color-small-portrait-card: var(--ifm-color-primary-p2); --ifm-background-color-large-portrait-card: white; - --ifm-background-color-large-portrait-card-dark-mode: #d0cb54; - --ifm-text-color-large-portrait-card: #1c1c16; - --ifm-text-color-large-portrait-card-dark-mode: #1c1c16; - + --ifm-text-color-large-portrait-card: var(--ifm-color-primary-p2); --ifm-background-color-project-card: var(--ifm-color-orange-light); - --ifm-background-color-project-card-dark-mode: #1e1c00; - - --ifm-text-color-project-card: #1c1c16; - --ifm-text-color-project-card-dark-mode: white; - - --ifm-color-text-on-primary-p1: #1c1c16; - --ifm-color-text-on-primary-p1-dark-mode: black; - + --ifm-text-color-project-card: var(--ifm-color-primary-p2); + --ifm-color-text-on-primary-p1: var(--ifm-color-primary-p2); --ifm-text-color-services-transition: var(--ifm-color-indigo-i1); - --ifm-text-color-services-transition-dark-mode: #a0c9ff; - - --ifm-background-color-blue-banner: #a0c9ff; - --ifm-background-color-blue-banner-dark-mode: #2c2e9d; - --ifm-text-color-blue-banner: #002646; - --ifm-text-color-blue-banner-dark-mode: #dde1ff; - + --ifm-background-color-blue-banner:var(--ifm-color-secondary-s1); + --ifm-text-color-blue-banner: var(--ifm-color-secondary-s3); --ifm-background-color-about-qs-banner: var(--ifm-color-primary-p1); - --ifm-background-color-about-qs-banner-dark-mode: var( - --ifm-color-primary-p1-dark-mode - ); - --ifm-text-color-about-qs-banner: #1c1c16; - --ifm-text-color-about-qs-banner-dark-mode: #1c1c16; + --ifm-text-color-about-qs-banner: var(--ifm-color-primary-p2); /* footer */ --ifm-background-color-footer: var(--ifm-color-primary-p1); - --ifm-background-color-footer-dark-mode: var( - --ifm-color-primary-p1-dark-mode - ); --ifm-text-color-footer: black; - --ifm-text-color-footer-dark-mode: black; /* buttons */ --ifm-background-color-button-home: var(--ifm-color-orange-jupyter); - /*--ifm-background-color-button-home-dark-mode: #0c37b7;*/ - --ifm-background-color-button-home-dark-mode: #2c2e9d; --ifm-text-color-button-home: black; - --ifm-text-color-button-home-dark-mode: white; - - --ifm-background-color-button-blue-banner: #002646; - --ifm-background-color-button-blue-banner-dark-mode: #dde1ff; + --ifm-background-color-button-blue-banner: var(--ifm-color-secondary-s3); --ifm-text-color-button-blue-banner: white; - --ifm-text-color-button-blue-banner-dark-mode: #640037; - --ifm-color-blue-contact-send-button: var(--ifm-color-blue-jupyter); - --ifm-background-color-popup-overlay: grey; - --ifm-background-color-popup-overlay-dark-mode: #3b3b3b; +/* Font sizes */ --ifm-font-size-small: 14px; --ifm-font-size-normal: 18px; --ifm-font-size-medium: 24px; --ifm-font-size-main-title: 48px; --ifm-font-size-secondary-title: 32px; + + /*Font families */ --ifm-font-family-roboto: "Roboto"; --ifm-font-family-roboto-flex: "Roboto Flex"; --ifm-font-family-bebas-neue: "Bebas Neue"; --ifm-font-family-rubik-one: "Rubik One"; --ifm-font-family-dosis: "Dosis"; + /* Spacing for margins and paddings */ --ifm-spacing-none: 0px; --ifm-spacing-2xs: 4px; --ifm-spacing-xs: 8px; @@ -150,106 +93,6 @@ --ifm-spacing-8xl: 400px; } -/* For readability concerns, you should choose a lighter palette in dark mode. */ -[data-theme="dark"] { - --ifm-text-color: var(--ifm-text-color-dark-mode); - --ifm-text-color-main-title: var(--ifm-text-color-main-title-dark-mode); - --ifm-background-color: var(--ifm-background-color-dark-mode); - --ifm-color-primary-p1: var(--ifm-color-primary-p1-dark-mode); - --ifm-background-color-footer: var(--ifm-background-color-footer-dark-mode); - --ifm-text-color-footer: var(--ifm-text-color-footer-dark-mode); - --ifm-color-primary-p2: var(--ifm-color-primary-p2-dark-mode); - --ifm-color-secondary-s2: var(--ifm-color-secondary-s2-dark-mode); - --ifm-color-text-on-primary-p1: var(--ifm-color-text-on-primary-p1-dark-mode); - --ifm-color-text-on-primary-p3: var(--ifm-color-text-on-primary-p3-dark-mode); - - --ifm-background-color-topics-card: var( - --ifm-background-color-topics-card-dark-mode - ); - --ifm-text-color-topics-card: var(--ifm-text-color-topics-card-dark-mode); - --ifm-background-color-topics-card-yellow: var( - --ifm-background-color-topics-card-yellow-dark-mode - ); - --ifm-text-color-topics-card-yellow: var( - --ifm-text-color-topics-card-yellow-dark-mode - ); - --ifm-background-color-topics-card-white: var( - --ifm-background-color-topics-card-white-dark-mode - ); - --ifm-text-color-topics-card-white: var( - --ifm-text-color-topics-card-white-dark-mode - ); - --ifm-background-value-topics-card-white: var( - --ifm-background-value-topics-card-white-dark-mode - ); - - --ifm-text-color-services-transition: var( - --ifm-text-color-services-transition-dark-mode - ); - - --ifm-background-color-value-card-yellow: var( - --ifm-background-color-value-card-yellow-dark-mode - ); - --ifm-text-color-value-card-yellow: var( - --ifm-text-color-value-card-yellow-dark-mode - ); - - --ifm-background-color-value-card-white: var( - --ifm-background-color-value-card-white-dark-mode - ); - - --ifm-text-color-value-card-white: var( - --ifm-text-color-value-card-white-dark-mode - ); - - --ifm-background-color-small-portrait-card: var( - --ifm-background-color-small-portrait-card-dark-mode - ); - --ifm-text-color-small-portrait-card: var( - --ifm-text-color-small-portrait-card-dark-mode - ); - - --ifm-background-color-large-portrait-card: var( - --ifm-background-color-large-portrait-card-dark-mode - ); - --ifm-text-color-large-portrait-card: var( - --ifm-text-color-large-portrait-card-dark-mode - ); - - --ifm-background-color-project-card: var( - --ifm-background-color-project-card-dark-mode - ); - --ifm-text-color-project-card: var(--ifm-text-color-project-card-dark-mode); - - --ifm-background-color-blue-banner: var( - --ifm-background-color-blue-banner-dark-mode - ); - --ifm-text-color-blue-banner: var(--ifm-text-color-blue-banner-dark-mode); - - --ifm-background-color-about-qs-banner: var( - --ifm-background-color-about-qs-banner-dark-mode - ); - --ifm-text-color-about-qs-banner: var( - --ifm-text-color-about-qs-banner-dark-mode - ); - - --ifm-background-color-button-home: var( - --ifm-background-color-button-home-dark-mode - ); - --ifm-text-color-button-home: var(--ifm-text-color-button-home-dark-mode); - --ifm-background-color-button-blue-banner: var( - --ifm-background-color-button-blue-banner-dark-mode - ); - --ifm-text-color-button-blue-banner: var( - --ifm-text-color-button-blue-banner-dark-mode - ); - - --ifm-background-color-popup-overlay: var( - --ifm-background-color-popup-overlay-dark-mode - ); - --ifm-text-color-on-primary-p1: var(--ifm-text-color-on-primary-p1-dark-mode); -} - .flex-full-centered { display: flex; align-items: center; @@ -740,7 +583,7 @@ a.menu__link:active { } .quantstack-astronaut-footer { - background: url(@site/static/img/quantstack/astronaut-footer-light.svg); + background: url(@site/static/img/quantstack/astronaut-footer.svg); content: ""; display: flex; height: 240px; diff --git a/static/img/icons/ArrowLeft-dark.svg b/static/img/icons/ArrowLeft-dark.svg deleted file mode 100644 index 0807692a1..000000000 --- a/static/img/icons/ArrowLeft-dark.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/static/img/icons/ArrowLeft-light.svg b/static/img/icons/ArrowLeft-light.svg deleted file mode 100644 index fccfa7b17..000000000 --- a/static/img/icons/ArrowLeft-light.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/static/img/icons/CloseIcon.svg b/static/img/icons/CloseIcon.svg deleted file mode 100644 index d2984e72f..000000000 --- a/static/img/icons/CloseIcon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/static/img/illustrations/contact-dark.svg b/static/img/illustrations/contact-dark.svg deleted file mode 100644 index 5b0621da7..000000000 --- a/static/img/illustrations/contact-dark.svg +++ /dev/null @@ -1,677 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/contact-light.svg b/static/img/illustrations/contact-light.svg deleted file mode 100644 index 28cd43c67..000000000 --- a/static/img/illustrations/contact-light.svg +++ /dev/null @@ -1,656 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/special-projects-dark.svg b/static/img/illustrations/special-projects-dark.svg deleted file mode 100644 index b1e1ad9dd..000000000 --- a/static/img/illustrations/special-projects-dark.svg +++ /dev/null @@ -1,2543 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/special-projects-light.svg b/static/img/illustrations/special-projects-light.svg deleted file mode 100644 index 8efe57f0d..000000000 --- a/static/img/illustrations/special-projects-light.svg +++ /dev/null @@ -1,2540 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/special_projects.png b/static/img/illustrations/special_projects.png deleted file mode 100644 index 1061188a6..000000000 Binary files a/static/img/illustrations/special_projects.png and /dev/null differ diff --git a/static/img/illustrations/special_projects.svg b/static/img/illustrations/special_projects.svg index 6994bfb8a..1d64ce1b3 100644 --- a/static/img/illustrations/special_projects.svg +++ b/static/img/illustrations/special_projects.svg @@ -1,657 +1,2540 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/illustrations/special_projects2.svg b/static/img/illustrations/special_projects2.svg deleted file mode 100644 index 279fcb218..000000000 --- a/static/img/illustrations/special_projects2.svg +++ /dev/null @@ -1,721 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/support-dark.svg b/static/img/illustrations/support-dark.svg deleted file mode 100644 index 3dd370a48..000000000 --- a/static/img/illustrations/support-dark.svg +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/support-light.svg b/static/img/illustrations/support-light.svg deleted file mode 100644 index 7d7627d5a..000000000 --- a/static/img/illustrations/support-light.svg +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/illustrations/support.png b/static/img/illustrations/support.png deleted file mode 100644 index fc5a483d0..000000000 Binary files a/static/img/illustrations/support.png and /dev/null differ diff --git a/static/img/illustrations/team.svg b/static/img/illustrations/team.svg deleted file mode 100644 index 32181c374..000000000 --- a/static/img/illustrations/team.svg +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/astronaut-dark.svg b/static/img/quantstack/astronaut-dark.svg deleted file mode 100644 index f4bd2b419..000000000 --- a/static/img/quantstack/astronaut-dark.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/astronaut-footer-dark.svg b/static/img/quantstack/astronaut-footer-dark.svg deleted file mode 100644 index e97bff476..000000000 --- a/static/img/quantstack/astronaut-footer-dark.svg +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/astronaut-footer-light.png b/static/img/quantstack/astronaut-footer-light.png deleted file mode 100644 index 81709cece..000000000 Binary files a/static/img/quantstack/astronaut-footer-light.png and /dev/null differ diff --git a/static/img/quantstack/astronaut-footer-light.svg b/static/img/quantstack/astronaut-footer-light.svg deleted file mode 100644 index 8577345db..000000000 --- a/static/img/quantstack/astronaut-footer-light.svg +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/astronaut-light.svg b/static/img/quantstack/astronaut-light.svg deleted file mode 100644 index fdcd0297f..000000000 --- a/static/img/quantstack/astronaut-light.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/logo-quantstack.png b/static/img/quantstack/logo-quantstack.png deleted file mode 100644 index bbb8586f6..000000000 Binary files a/static/img/quantstack/logo-quantstack.png and /dev/null differ diff --git a/static/img/quantstack/logo-website-dark.svg b/static/img/quantstack/logo-website-dark.svg deleted file mode 100644 index 45dfa345e..000000000 --- a/static/img/quantstack/logo-website-dark.svg +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/logo-website-light.svg b/static/img/quantstack/logo-website-light.svg deleted file mode 100644 index 5993e2c20..000000000 --- a/static/img/quantstack/logo-website-light.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/img/quantstack/logo-website.png b/static/img/quantstack/logo-website.png deleted file mode 100644 index b2641fda2..000000000 Binary files a/static/img/quantstack/logo-website.png and /dev/null differ diff --git a/static/img/values/integrity-dark.svg b/static/img/values/integrity-dark.svg deleted file mode 100644 index 5a0ea138d..000000000 --- a/static/img/values/integrity-dark.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - diff --git a/static/img/values/integrity-light.svg b/static/img/values/integrity.svg similarity index 100% rename from static/img/values/integrity-light.svg rename to static/img/values/integrity.svg diff --git a/static/img/values/openness-dark.svg b/static/img/values/openness-dark.svg deleted file mode 100644 index 1cebc09c7..000000000 --- a/static/img/values/openness-dark.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - diff --git a/static/img/values/openness-light.svg b/static/img/values/openness.svg similarity index 100% rename from static/img/values/openness-light.svg rename to static/img/values/openness.svg diff --git a/static/img/values/optimism-dark.svg b/static/img/values/optimism-dark.svg deleted file mode 100644 index 839be71e5..000000000 --- a/static/img/values/optimism-dark.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - diff --git a/static/img/values/optimism-light.svg b/static/img/values/optimism.svg similarity index 100% rename from static/img/values/optimism-light.svg rename to static/img/values/optimism.svg diff --git a/static/img/values/science-dark.svg b/static/img/values/science-dark.svg deleted file mode 100644 index 1806b7886..000000000 --- a/static/img/values/science-dark.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - diff --git a/static/img/values/science-light.svg b/static/img/values/science.svg similarity index 100% rename from static/img/values/science-light.svg rename to static/img/values/science.svg