Initial commit

This commit is contained in:
dk
2026-03-05 17:17:45 +00:00
commit 71bd32a95e
627 changed files with 85261 additions and 0 deletions

11
src/types/button.ts Normal file
View File

@@ -0,0 +1,11 @@
import type { CTAButtonVariant, ButtonPropsForVariant } from "@/components/button/types";
export type ButtonAnimationType = "none" | "opacity" | "slide-up" | "blur-reveal";
export interface ButtonConfig {
text: string;
onClick?: () => void;
href?: string;
scrollToSection?: boolean;
props?: Partial<ButtonPropsForVariant<CTAButtonVariant>>;
}