diff --git a/src/components/Cursor.jsx b/src/components/Cursor.jsx index dab9594..ef4e9df 100644 --- a/src/components/Cursor.jsx +++ b/src/components/Cursor.jsx @@ -1,6 +1,6 @@ import { useEffect, useState } from "react"; import { motion } from "framer-motion"; -import { FaArrowAltCircleRight } from "react-icons/fa"; +import { FaArrowRight } from "react-icons/fa"; const Cursor = ({ cursorVariant }) => { const [mousePosition, setMousePosition] = useState({ @@ -25,26 +25,26 @@ const Cursor = ({ cursorVariant }) => { const variants = { default: { - x: mousePosition.x - 16, - y: mousePosition.y - 16, + scale: 1, }, text: { - x: mousePosition.x - 75, - y: mousePosition.y - 75, - height: 150, - width: 150, + scale: 3, }, }; return ( {cursorVariant === "text" ? (

- +

) : null}