import React, { useState } from 'react'; import { motion } from 'framer-motion'; const Contact: React.FC = () => { const [formData, setFormData] = useState({ name: '', email: '', subject: '', message: '' }); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); // Handle form submission console.log('Form submitted:', formData); alert('Thank you for your message! We\'ll get back to you within 1-2 business days.'); setFormData({ name: '', email: '', subject: '', message: '' }); }; const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const contactInfo = [ { icon: "๐Ÿ“ง", title: "Email", detail: "support@knuthceramics.com", description: "Best for order inquiries or detailed questions" }, { icon: "๐Ÿ“ž", title: "Phone", detail: "(361) 555-1234", description: "Monโ€“Fri, 9amโ€“5pm CST" }, { icon: "๐Ÿ“", title: "Workshop", detail: "123 Artisan Lane, Corpus Christi, TX 78401", description: "Please note: this is our workshop, not a retail store" } ]; return (
{/* Header */}
Get in Touch Contact
Us
We're happy to help with any questions, custom requests, or feedback. We usually reply to emails within 1โ€“2 business days.
{/* Contact Form */}

Send us a message