Initial commit

This commit is contained in:
Nikolay Pecheniev
2026-03-02 11:28:38 +02:00
commit 79f2d5bddd
625 changed files with 81875 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;
}