// @ts-nocheck 'use client'; import { motion, MotionValue } from 'framer-motion'; import { cn } from '../../lib/utils'; const transition = { duration: 0, ease: 'linear', }; export const GoogleGeminiEffect = ({ pathLengths, title, description, className, }: { pathLengths: MotionValue[]; title?: string; description?: string; className?: string; }) => { return (

{title || `Build with Aceternity UI`}

{description || `Scroll this component and see the bottom SVG come to life wow this works!`}

{/* Gaussian blur for the background paths */}
); };