@@ -22,29 +22,20 @@ export const FocusModeFeature = () => {
2222 < div className = "relative w-16 h-16 flex items-center justify-center mb-2" >
2323 { /* Ripples */ }
2424 < motion . div
25- animate = { { scale : [ 1 , 1.5 , 2 ] , opacity : [ 0.5 , 0 , 0 ] } }
25+ animate = { { scale : [ 1 , 1.5 , 2 ] , opacity : [ 0.5 , 0.1 , 0 ] } }
2626 transition = { { duration : 2 , repeat : Infinity , ease : "easeOut" } }
2727 className = "absolute inset-0 bg-indigo-500/10 rounded-full"
2828 />
2929 < motion . div
30- animate = { { scale : [ 1 , 1.5 , 2 ] , opacity : [ 0.5 , 0 , 0 ] } }
30+ animate = { { scale : [ 1 , 1.5 , 2 ] , opacity : [ 0.5 , 0.3 , 0 ] } }
3131 transition = { { duration : 2 , repeat : Infinity , ease : "easeOut" , delay : 1 } }
3232 className = "absolute inset-0 bg-indigo-500/10 rounded-full"
3333 />
3434
3535 < div className = "relative z-10 bg-zinc-900 p-3 rounded-full border border-indigo-500/20 shadow-[0_0_15px_rgba(99,102,241,0.3)]" >
3636 < BellOff className = "w-6 h-6 text-indigo-400" />
3737 </ div >
38-
39- { /* Floating "silenced" notifications */ }
40- < motion . div
41- initial = { { x : 40 , y : - 20 , opacity : 0 , scale : 0.5 } }
42- whileInView = { { x : 25 , y : - 15 , opacity : 0.5 , scale : 0.8 } }
43- transition = { { duration : 0.5 , delay : 0.2 } }
44- className = "absolute top-0 right-0"
45- >
46- < Bell className = "w-4 h-4 text-zinc-600 rotate-12" />
47- </ motion . div >
38+
4839 </ div >
4940
5041 < p className = "text-xl font-medium text-white tracking-tight" > Focus Active</ p >
0 commit comments