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: "Do you ship your ceramics internationally?", answer: "Currently, we ship our handmade pottery mainly within Texas and the United States. We occasionally open international shipping spots for specific drops. Sign up for our newsletter to be notified." }, { question: "Are your pieces dishwasher and microwave safe?", answer: "Yes! Our functional stoneware, including mugs, plates, and bowls, is fired to cone 6 oxidation, 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 studio is based in the heart of Corpus Christi, Texas. We take inspiration from the Gulf Coast landscape. We offer local pickup for our Corpus Christi neighbors!" }, { question: "Do you offer pottery classes in Corpus Christi?", answer: "We are working on bringing intimate wheel-throwing workshops to our Corpus Christi studio soon. Check our 'Atelier' page or follow us on Instagram for announcements." }, { 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, please contact us directly." }, { question: "How often do you restock the shop?", answer: "We work in small batches and typically release a new 'Sandstone' or 'Seafoam' collection every 4-6 weeks. Join our email list to get early access to the next kiln opening." }, { 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;