diff --git a/src/pages/LandingPageV3/index.js b/src/pages/LandingPageV3/index.js index 697bb59c..7278e519 100644 --- a/src/pages/LandingPageV3/index.js +++ b/src/pages/LandingPageV3/index.js @@ -10,20 +10,13 @@ import ParentOrgs from './ParentOrgs' import Footer from './Footer' import Sponsors from './Sponsors' import { Dialog } from '@headlessui/react' -import { useState, useEffect } from 'react' +import { useState } from 'react' import './style.css' export default function LandingPageV3() { const whatIsGenerateRef = useRef(null) - const [isOpen, setIsOpen] = useState(false) - - useEffect(() => { - const timer = setTimeout(() => { - setIsOpen(true) - }, 2000) - return () => clearTimeout(timer) - }, []) + const [isOpen, setIsOpen] = useState(false) // <-- Set to true to enable the popup and change the link below return (
@@ -35,10 +28,9 @@ export default function LandingPageV3() {