import React from 'react'; import { useGSAP } from '@gsap/react' import gsap from 'gsap' import VideoCarousel from '../../components/VideoCarousel' const Highlights = () => { useGSAP(() => { gsap.to('#title', { opacity: 1, y: 0 }) gsap.to('.link', { opacity: 1, y: 0, duration: 1, stagger: { amount: 0.25, } }) }, []) return (

Features that make VarDiG powerful.

) } export default Highlights