From 18029c3b83ad495baab160e6b8c95ea551e815c0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 9 May 2026 06:49:33 +0000 Subject: [PATCH] feat: Add subpages for each club amenity and activity and buttons on each card to navigate to them. --- src/components/ui/ButtonShift.tsx | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) 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;