import React, { FC, useState, useCallback, useRef } from 'react'; import { motion } from 'framer-motion'; interface ContactButtonProps { children: React.ReactNode; } /** * Contact Button component with a complex gradient and shadow effect. */ export const ContactButton: FC = ({ children }) => { return ( {children} ); };