diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 0fa7f60..36e42d4 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useState } from "react"; import { motion } from "framer-motion"; import { Heart } from "phosphor-react"; @@ -18,6 +18,8 @@ const variants = { }; const Footer: React.FC = () => { + const [phoneHovered, setPhoneHovered] = useState(false); + return (