Initial commit

This commit is contained in:
vitalijmulika
2026-03-13 12:37:49 +02:00
commit b28a1dc88e
628 changed files with 78652 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>>;
}

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

@@ -0,0 +1,11 @@
export interface NavItem {
name: string;
id: string;
}
export interface NavbarProps {
navItems: NavItem[];
// logoSrc?: string;
// logoAlt?: string;
brandName?: string;
}