File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { useRef } from 'react';
1010const Home = ( ) => {
1111 // const MotionButton = motion(Button);
1212 const constraintsRef = useRef ( null ) ;
13- const IS_COMING_SOON = true ; // Set to false when the agenda is ready
13+ const IS_COMING_SOON = true ; // Set to false when the event tickets are available
1414
1515 return (
1616 < div className = "relative min-h-screen flex flex-col justify-center items-center p-4 sm:p-6 md:p-10 text-white overflow-hidden" >
@@ -122,13 +122,13 @@ const Home = () => {
122122 </ motion . div >
123123
124124 { /* CTA Buttons */ }
125- { /* <motion.div
125+ < motion . div
126126 initial = { { opacity : 0 , y : 30 } }
127127 animate = { { opacity : 1 , y : 0 } }
128128 transition = { { duration : 0.4 , delay : 0.5 } }
129129 >
130- {IS_COMING_SOON && <EnhancedCTAButtons />}
131- </motion.div> */ }
130+ { IS_COMING_SOON ? null : < EnhancedCTAButtons /> }
131+ </ motion . div >
132132
133133 { /* Additional Info */ }
134134 < motion . div
You can’t perform that action at this time.
0 commit comments