diff --git a/src/components/ui/ButtonShift.tsx b/src/components/ui/ButtonShift.tsx index 01fe1a0..6dd4386 100644 --- a/src/components/ui/ButtonShift.tsx +++ b/src/components/ui/ButtonShift.tsx @@ -1,6 +1,5 @@ "use client"; -import { motion } from "motion/react"; import { useButtonClick } from "@/hooks/useButtonClick"; import { cls } from "@/lib/utils"; @@ -37,18 +36,7 @@ const ButtonShift = ({ text, variant = "primary", href = "#", onClick, animate = ); - if (!animate) return button; - - return ( - - {button} - - ); + return button; }; export default ButtonShift;