diff --git a/docusaurus.config.ts b/docusaurus.config.ts index ba353f02..628549f2 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -194,7 +194,6 @@ const config: Config = { { to: "/showcase", label: "Showcase" }, { to: "/blog", label: "Blog" }, { to: "/newsletter", label: "Newsletter" }, - { to: "/sponsorship", label: "Sponsorship" }, { to: "/contact", label: "Contact" } ] }, @@ -315,10 +314,6 @@ const config: Config = { label: "Newsletter", to: "/newsletter" }, - { - label: "Sponsorship", - to: "/sponsorship" - }, { label: "Changelog", to: "/changelog" diff --git a/src/pages/sponsorship/index.module.scss b/src/pages/sponsorship/index.module.scss deleted file mode 100644 index 5df5bce5..00000000 --- a/src/pages/sponsorship/index.module.scss +++ /dev/null @@ -1,21 +0,0 @@ -@use "../../mixins/fonts"; - -.container { - margin: 3rem auto 6rem; - max-width: var(--ifm-container-width); - padding: 0 var(--ifm-spacing-horizontal); - width: 100%; -} - -.sub { - margin: 1rem 0 0.75rem; - @include fonts.h2; -} - -.subsub { - margin: 2rem 0 0.75rem; -} - -.list { - margin: 0 0 2rem; -} diff --git a/src/pages/sponsorship/index.tsx b/src/pages/sponsorship/index.tsx deleted file mode 100644 index 923096bb..00000000 --- a/src/pages/sponsorship/index.tsx +++ /dev/null @@ -1,78 +0,0 @@ -import Head from "@site/src/components/Head"; -import Layout from "@theme/Layout"; -import styles from "./index.module.scss"; - -export default function SponsorshipPage(): JSX.Element { - return ( - - - - - -
-

Sponsorship

- -

- Juno is fully open source, and we believe in supporting the people who - make the open-source ecosystem thrive. -

- -

- As part of that commitment, we sponsor a few creators whose work we - rely on and admire. Our current contributions are modest, but they'll - grow as we do. -

- -

Currently sponsoring

- - - -

- We're just getting started, and we'll keep expanding this list as Juno - grows. -

- -

- Want to suggest someone we should support? Get in touch on{" "} - - Discord - {" "} - or{" "} - - OpenChat - - . -

-
-
- ); -}