first commit

This commit is contained in:
2026-01-17 14:17:42 +05:30
commit 0f194eb9e7
328 changed files with 73544 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
'use client'
import { LazyFloatingWhatsApp } from './DynamicComponents'
interface ClientFloatingWhatsAppProps {
phoneNumber: string
message: string
position: "bottom-right" | "bottom-left"
showTooltip: boolean
}
export default function ClientFloatingWhatsApp(props: ClientFloatingWhatsAppProps) {
return <LazyFloatingWhatsApp {...props} />
}