Contact Us

Contact Us

Contact Us

Send an email

contact@cubour.com

Create a free website with Framer, the website builder loved by startups, designers and agencies.

import { Override } from "framer" import { animate } from "framer-motion" export function TeamCardHover(): Override { return { onHoverStart: (e) => { animate(e.currentTarget, { scale: 1.05, y: -12, }, { duration: 0.35, ease: "easeOut", }) }, onHoverEnd: (e) => { animate(e.currentTarget, { scale: 1, y: 0, }, { duration: 0.35, ease: "easeOut", }) }, } }