'use client'; import { useState } from 'react'; import { motion } from 'framer-motion'; export default function Contact() { const [formData, setFormData] = useState({ firstName: '', lastName: '', email: '', phone: '', message: '', }); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); // Handle form submission here console.log('Form submitted:', formData); alert('Thank you for your message! We will get back to you soon.'); setFormData({ firstName: '', lastName: '', email: '', phone: '', message: '', }); }; const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value, }); }; return (

Contact Me

I'm here for you!

I'm available for both private sessions as well as public speaking arrangements and tailored workshops. Contact me directly for more detailed information and a non-commitment quote.