Skip to content

Commit 84a570c

Browse files
committed
Prepping for 2026 event
1 parent a9972ec commit 84a570c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Components/Home.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { useRef } from 'react';
1010
const 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

0 commit comments

Comments
 (0)