feat: enhance globe component with interactive controls and global markers

This commit is contained in:
2025-10-23 14:37:13 +02:00
parent 4cc98af570
commit 73832e2686
6 changed files with 335 additions and 54 deletions

View File

@@ -6,7 +6,7 @@ import { SectionHeader } from '@/components/Texts'
interface CountUpNumberProps {
end: number
className?: string
color?: 'light' | 'primary' | 'secondary'
color?: 'light' | 'primary' | 'secondary' | 'white'
}
export function CountUpNumber({ end, className, color }: CountUpNumberProps) {