diff --git a/src/components/Conf/Footer/index.tsx b/src/components/Conf/Footer/index.tsx index fb27e09a33..6f5b2b26da 100644 --- a/src/components/Conf/Footer/index.tsx +++ b/src/components/Conf/Footer/index.tsx @@ -12,7 +12,6 @@ const links = [ { text: "Location", href: "/conf/#location" }, ], [ - { text: "Speak", href: "/conf/speak/" }, { text: "Sponsor", href: "/conf/sponsor/" }, { text: "FAQ", href: "/conf/faq/" }, { text: "Contact Us", href: "/conf/faq/#contact" }, @@ -25,11 +24,11 @@ const links = [ ], ] -const FooterConf = () => { +const FooterConf = ({ includeSponors = true, includePartners = true }) => { return ( <> - - + {includeSponors && } + {includePartners && }