import { MDXProvider } from "@mdx-js/react"; import React, { HTMLAttributes } from "react"; import { Image } from "../../components/Image"; import Content from "../../content/about/our-supporters.mdx"; import styles from "./our-supporters.module.css"; export default function OurSupporters() { return (

Our Supporters

); } function H2(props: HTMLAttributes) { return

; } function Text(props: HTMLAttributes) { return

; } function UL(props: HTMLAttributes) { return

    ; }