Skip to content

Commit 319314e

Browse files
committed
fix: style fix
1 parent 2c133e1 commit 319314e

File tree

2 files changed

+3
-27
lines changed

2 files changed

+3
-27
lines changed

src/components/landing/features/FocusModeFeature.tsx

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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>

src/components/landing/features/InsightsFeature.tsx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,6 @@ export const InsightsFeature = () => {
3131
{/* Gradient Area Chart */}
3232
<svg className="absolute inset-0 w-full h-full pointer-events-none" preserveAspectRatio="none" viewBox="0 0 100 100">
3333
<title>Analytics Chart</title>
34-
<defs>
35-
<linearGradient id="chartGradient" x1="0" y1="0" x2="0" y2="1">
36-
<stop offset="0%" stopColor="rgb(16, 185, 129)" stopOpacity="0.3" />
37-
<stop offset="100%" stopColor="rgb(16, 185, 129)" stopOpacity="0" />
38-
</linearGradient>
39-
</defs>
40-
<motion.path
41-
initial={{ d: "M0,100 L0,100 L20,100 L40,100 L60,100 L80,100 L100,100 Z" }}
42-
whileInView={{
43-
d: "M0,100 L0,60 L20,30 L40,50 L60,10 L80,40 L100,20 L100,100 Z"
44-
}}
45-
transition={{ duration: 1.5, ease: "easeOut" }}
46-
fill="url(#chartGradient)"
47-
/>
4834
<motion.path
4935
initial={{ d: "M0,100 L20,100 L40,100 L60,100 L80,100 L100,100" }}
5036
whileInView={{
@@ -59,7 +45,6 @@ export const InsightsFeature = () => {
5945
vectorEffect="non-scaling-stroke"
6046
/>
6147

62-
{/* Interactive Points Animation - Removed per user request */}
6348
</svg>
6449

6550
{/* Overlay Stats */}

0 commit comments

Comments
 (0)