From 9396a8820bb713deb200f4777a2fc777ea964dfa Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 24 May 2026 21:11:15 +0000 Subject: [PATCH 1/3] Update src/components/ui/ButtonShift.tsx --- src/components/ui/ButtonShift.tsx | 54 ------------------------------- 1 file changed, 54 deletions(-) diff --git a/src/components/ui/ButtonShift.tsx b/src/components/ui/ButtonShift.tsx index 01fe1a0..e69de29 100644 --- a/src/components/ui/ButtonShift.tsx +++ b/src/components/ui/ButtonShift.tsx @@ -1,54 +0,0 @@ -"use client"; - -import { motion } from "motion/react"; -import { useButtonClick } from "@/hooks/useButtonClick"; -import { cls } from "@/lib/utils"; - -interface ButtonShiftProps { - text: string; - variant?: "primary" | "secondary"; - href?: string; - onClick?: () => void; - animate?: boolean; - animationDelay?: number; - className?: string; -} - -const ButtonShift = ({ text, variant = "primary", href = "#", onClick, animate = true, animationDelay = 0, className = "" }: ButtonShiftProps) => { - const handleClick = useButtonClick(href, onClick); - - const button = ( - - - {[...text].map((char, index) => ( - - {char} - - ))} - - - ); - - if (!animate) return button; - - return ( - - {button} - - ); -}; - -export default ButtonShift; -- 2.49.1 From 686cb32193124d707f505982bf0283bdcef5e294 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 24 May 2026 21:11:16 +0000 Subject: [PATCH 2/3] Update src/components/ui/Separator.tsx --- src/components/ui/Separator.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/components/ui/Separator.tsx b/src/components/ui/Separator.tsx index 27d5b7d..e69de29 100644 --- a/src/components/ui/Separator.tsx +++ b/src/components/ui/Separator.tsx @@ -1,11 +0,0 @@ -import { cls } from "@/lib/utils"; - -interface SeparatorProps { - className?: string; -} - -const Separator = ({ className = "" }: SeparatorProps) => ( -
-); - -export default Separator; -- 2.49.1 From c53c3394e1d22f1af9123ad8fa64439a4bb903b0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 24 May 2026 21:11:17 +0000 Subject: [PATCH 3/3] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 11084b3..4e2fb53 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -15,7 +15,7 @@ export default function HomePage() {