|
|
|
|
@@ -1,6 +1,5 @@
|
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { motion } from "motion/react";
|
|
|
|
|
import { useButtonClick } from "@/hooks/useButtonClick";
|
|
|
|
|
import { cls } from "@/lib/utils";
|
|
|
|
|
import { useStyle } from "@/components/ui/useStyle";
|
|
|
|
|
@@ -23,31 +22,18 @@ interface ButtonProps {
|
|
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const DefaultButton = ({ text, variant = "primary", href = "#", onClick, animate = true, animationDelay = 0, className = "" }: ButtonProps) => {
|
|
|
|
|
const DefaultButton = ({ text, variant = "primary", href = "#", onClick, className = "" }: ButtonProps) => {
|
|
|
|
|
const handleClick = useButtonClick(href, onClick);
|
|
|
|
|
|
|
|
|
|
const button = (
|
|
|
|
|
return (
|
|
|
|
|
<a
|
|
|
|
|
href={href}
|
|
|
|
|
onClick={handleClick}
|
|
|
|
|
className={cls("flex items-center justify-center h-9 px-6 text-sm rounded cursor-pointer", variant === "primary" ? "primary-button text-primary-cta-text" : "secondary-button text-secondary-cta-text", className)}
|
|
|
|
|
className={cls("flex items-center justify-center h-9 px-6 text-sm rounded cursor-pointer transform transition-transform duration-200 hover:scale-105 active:scale-95", variant === "primary" ? "primary-button text-primary-cta-text shadow-[0_4px_0_0_rgba(0,0,0,0.2)] hover:shadow-[0_6px_0_0_rgba(0,0,0,0.2)] active:shadow-[0_2px_0_0_rgba(0,0,0,0.2)]" : "secondary-button text-secondary-cta-text shadow-[0_4px_0_0_rgba(0,0,0,0.2)] hover:shadow-[0_6px_0_0_rgba(0,0,0,0.2)] active:shadow-[0_2px_0_0_rgba(0,0,0,0.2)]", className)}
|
|
|
|
|
>
|
|
|
|
|
{text}
|
|
|
|
|
</a>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (!animate) return button;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<motion.div
|
|
|
|
|
initial={{ opacity: 0, y: 20 }}
|
|
|
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
|
|
|
viewport={{ once: true }}
|
|
|
|
|
transition={{ duration: 0.6, delay: animationDelay, ease: "easeOut" }}
|
|
|
|
|
>
|
|
|
|
|
{button}
|
|
|
|
|
</motion.div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const Button = (props: ButtonProps) => {
|
|
|
|
|
|