"use client" import { useRef } from "react" import { motion, useScroll, useTransform } from "framer-motion" import { Button } from "@/components/ui/button" import Link from "next/link" export function NewHero() { const ref = useRef(null) const { scrollY } = useScroll() const y = useTransform(scrollY, [0, 1000], [0, 200]) const opacity = useTransform(scrollY, [0, 300], [1, 0]) return (
{/* Parallax Background */}
) }