From a4e15e98e9694072500dbb20f66da6e2d7cc0232 Mon Sep 17 00:00:00 2001 From: Benjamin Shafii Date: Mon, 9 Mar 2026 18:45:26 -0700 Subject: [PATCH] test --- .../landing/components/landing-background.tsx | 43 ++++++++++++++----- 1 file changed, 32 insertions(+), 11 deletions(-) diff --git a/packages/landing/components/landing-background.tsx b/packages/landing/components/landing-background.tsx index 1a8c2e349..3e82f834e 100644 --- a/packages/landing/components/landing-background.tsx +++ b/packages/landing/components/landing-background.tsx @@ -1,21 +1,14 @@ "use client"; -import { motion, useScroll, useTransform } from "framer-motion"; import { ResponsiveGrain } from "./responsive-grain"; export function LandingBackground() { - const { scrollY } = useScroll(); - const darkOpacity = useTransform(scrollY, [0, 500], [0.6, 0]); - return ( <> -
+ {/*
*/} - {/* */} - + - {/* */} +
+ + ); }