diff --git a/src/components/Splash/Splash.jsx b/src/components/Splash/Splash.jsx index 402e22ebe1e9..d378fb034881 100644 --- a/src/components/Splash/Splash.jsx +++ b/src/components/Splash/Splash.jsx @@ -1,5 +1,5 @@ // Import External Dependencies -import { lazy, Suspense, useState, useEffect } from 'react'; +import { useState, useEffect } from 'react'; // Import Components import Container from '../Container/Container'; @@ -18,36 +18,7 @@ import './Splash.scss'; // const Support = lazy(() => import('../Support/Support')); -const SponsorsPlaceholder = () => ( - <> -

Latest Sponsors

- - -

Platinum Sponsors

- - -

Gold Sponsors

- - -

Silver Sponsors

- - -

Bronze Sponsors

- - -

Backers

- - -); - const Splash = () => { - const [showSponsors, setShowSponsors] = useState(false); - const [supportType, setSupportType] = useState(() => - Math.random() < 0.33 ? 'monthly' : 'total' - ); - useEffect(() => { - if (isClient) setShowSponsors(true); - }, []); return (