import React, { useRef } from 'react'; import { useScrollFadeIn } from '../hooks/useScrollAnimations'; interface FAQItemProps { question: string; answer: string; } const FAQItem: React.FC = ({ question, answer }) => { const [isOpen, setIsOpen] = React.useState(false); return (

{answer}

); }; const FAQ: React.FC = () => { const containerRef = useRef(null); useScrollFadeIn(containerRef); const faqs = [ { question: "Is the online shop currently open?", answer: "Our online shop is temporarily closed while we focus on new collections and studio work. Follow us on Instagram or sign up for our newsletter to be the first to know when it reopens. For commissions, reach out directly at knuth.claudia@gmail.com." }, { question: "Are your pieces dishwasher and microwave safe?", answer: "Yes! Our functional stoneware, including mugs, plates, and bowls, is high-fire kiln fired, making it durable for daily use. However, hand washing is always recommended to prolong the life of your unique handmade ceramics." }, { question: "Where is your studio located?", answer: "Our work is rooted in Corpus Christi, Texas, inspired by the colors and textures of the Gulf Coast." }, { question: "Do you offer pottery classes in Corpus Christi?", answer: "Pottery classes and wheel-throwing workshops are available through the Art Center of Corpus Christi. Visit the Art Center for current schedules and registration." }, { question: "Do you take custom orders or commissions?", answer: "We accept a limited number of custom dinnerware commissions each year. If you are looking for a bespoke set for your home or restaurant, reach out directly at knuth.claudia@gmail.com." }, { question: "What clay bodies and glazes do you use?", answer: "We use a proprietary blend of stoneware clay that mimics the texture of Texas limestone. Our glazes are formulated in-house to reflect colors of the sea and sand." } ]; return (
Common Questions

Studio FAQ

{faqs.map((faq, index) => ( ))}
); }; export default FAQ;