import { motion } from 'framer-motion' import { useInView } from 'react-intersection-observer' const Home = () => { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.1, }) return (
{/* Hero Section */}
Serene mountain lake landscape

DeafGain LLC

"Language is a right, not a luxury."

{/* Mission Statement Section */}

Our Mission

We are dedicated to bridging language gaps, fostering inclusivity, and celebrating
the unique contributions of the Deaf community through innovative solutions that benefit everyone.

) } export default Home