Skip to content

Commit 2d8537a

Browse files
committed
fix(mavrodev): remove left text
1 parent cab6031 commit 2d8537a

File tree

1 file changed

+1
-36
lines changed

1 file changed

+1
-36
lines changed

apps/mavrodev/src/app/book/page.tsx

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,9 @@
22

33
import { motion } from 'framer-motion';
44
import { Button } from '@repo/ui/components';
5-
import { Calendar, MessageCircle, ArrowDown } from 'lucide-react';
6-
import { useState, useEffect } from 'react';
5+
import { Calendar, MessageCircle } from 'lucide-react';
76

87
export default function BookMeetingPage() {
9-
const [showChatHint, setShowChatHint] = useState(false);
10-
11-
useEffect(() => {
12-
// Show hint after a delay
13-
const timer = setTimeout(() => {
14-
setShowChatHint(true);
15-
}, 2000);
16-
return () => clearTimeout(timer);
17-
}, []);
18-
198
const openChat = () => {
209
// Find and click the chat widget button - it's the floating button with MessageCircle icon
2110
const chatButtons = document.querySelectorAll('button');
@@ -114,30 +103,6 @@ export default function BookMeetingPage() {
114103
Open AI Assistant
115104
</Button>
116105
</motion.div>
117-
118-
{showChatHint && (
119-
<motion.div
120-
initial={{ opacity: 0, y: -10 }}
121-
animate={{ opacity: 1, y: 0 }}
122-
className="fixed bottom-20 right-10 hidden sm:block"
123-
>
124-
<div className="relative">
125-
<motion.div
126-
animate={{ y: [0, 10, 0] }}
127-
transition={{
128-
repeat: Infinity,
129-
duration: 2,
130-
ease: 'easeInOut',
131-
}}
132-
>
133-
<ArrowDown className="w-8 h-8 text-primary" />
134-
</motion.div>
135-
<p className="absolute top-10 right-0 whitespace-nowrap text-sm text-muted-foreground">
136-
Or click here! →
137-
</p>
138-
</div>
139-
</motion.div>
140-
)}
141106
</motion.div>
142107

143108
{/* Fun facts while they wait */}

0 commit comments

Comments
 (0)