diff --git a/data/app.db b/data/app.db index 8ec2fc3..629d961 100644 Binary files a/data/app.db and b/data/app.db differ diff --git a/src/components/parallax.tsx b/src/components/parallax.tsx index a40da1b..059e9f8 100644 --- a/src/components/parallax.tsx +++ b/src/components/parallax.tsx @@ -54,9 +54,7 @@ export function Parallax({ className={className} // willChange: kayma 0'dan geçerken katmanın compositor'dan düşüp // tekrar oluşturulmasını (raster churn) engeller - style={ - reduceMotion ? { y: 0 } : { y, willChange: "transform" } - } + style={reduceMotion ? { y: 0 } : { y, willChange: "transform" }} > {children} diff --git a/src/components/use-pixel-heat.ts b/src/components/use-pixel-heat.ts index 7a494a5..781405a 100644 --- a/src/components/use-pixel-heat.ts +++ b/src/components/use-pixel-heat.ts @@ -88,7 +88,11 @@ export function usePixelHeat( const isHot = d2 <= radius * radius; if (isHot && !hot.has(p.el)) { hot.add(p.el); - run(p.el, { fill: HOT_COLOR, fillOpacity: HOT_OPACITY }, HEAT_DURATION); + run( + p.el, + { fill: HOT_COLOR, fillOpacity: HOT_OPACITY }, + HEAT_DURATION, + ); } else if (!isHot && hot.has(p.el)) { hot.delete(p.el); run(