diff --git a/app/components/ContactTmp.tsx b/app/components/ContactTmp.tsx index 0b8ee9f..4791e61 100644 --- a/app/components/ContactTmp.tsx +++ b/app/components/ContactTmp.tsx @@ -27,7 +27,14 @@ export default function Contact() { ) } -function ContactButton({ href, icon, label, className }) { +interface ContactButtonProps { + href: string; + icon: any; + label: string; + className?: string; +} + +function ContactButton({ href, icon, label, className }: ContactButtonProps) { return (