import React, { useState } from 'react'; import { Link } from 'react-router-dom'; import { motion, AnimatePresence } from 'framer-motion'; import SEO, { SITE_URL } from '../components/SEO'; interface FAQItem { question: string; answer: string; } const faqData: FAQItem[] = [ { question: "Are your ceramics safe for food, oven, and dishwasher use?", answer: "Yes – all our pottery is glazed and food-safe. We use durable, non-toxic glazes that are oven-, microwave-, and dishwasher-safe. To extend their life, we still recommend hand-washing and avoiding harsh scrubbing. Treat your ceramicware gently (like any quality dishware) to keep the colors vibrant and the glaze strong." }, { question: "How unique is each piece?", answer: "Every piece we create is handcrafted in small batches at our Corpus Christi studio. No two pieces are exactly alike — you will see slight variations and unique markings that make each item one-of-a-kind. These natural imperfections are a sign of true craftsmanship and the human hand behind every piece." }, { question: "Is the online shop currently open?", answer: "Our online shop is temporarily closed while we focus on new collections and studio work. You can still reach us directly for custom commissions or inquiries. Sign up for our newsletter or follow us on Instagram to be the first to know when the shop reopens." }, { question: "Do you take custom orders or commissions?", answer: "Yes — we accept a limited number of custom commissions each year. Claudia's work is rooted in the Art Center of Corpus Christi community. Whether you are looking for a bespoke dinnerware set or a one-of-a-kind gift, reach out directly at knuth.claudia@gmail.com to discuss your vision, timeline, and pricing." }, { question: "Do you offer pottery classes or workshops?", answer: "Pottery classes and wheel-throwing workshops are available through the Art Center of Corpus Christi. Visit the Art Center for current class schedules and registration." }, { question: "How do I contact you with questions?", answer: "We are here to help! You can reach us directly at knuth.claudia@gmail.com or use the contact form on our site. We aim to respond within 1–2 business days. Thank you for your interest in KNUTH Ceramics — we love hearing from you." } ]; const faqSchema = { "@context": "https://schema.org", "@type": "FAQPage", "name": "FAQ | KNUTH Ceramics — Handcrafted Pottery Corpus Christi", "url": `${SITE_URL}/faq`, "breadcrumb": { "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Home", "item": `${SITE_URL}/` }, { "@type": "ListItem", "position": 2, "name": "FAQ", "item": `${SITE_URL}/faq` } ] }, "mainEntity": faqData.map(item => ({ "@type": "Question", "name": item.question, "acceptedAnswer": { "@type": "Answer", "text": item.answer } })) }; const FAQ: React.FC = () => { const [openIndex, setOpenIndex] = useState(null); const toggleFAQ = (index: number) => { setOpenIndex(openIndex === index ? null : index); }; return (
{/* Header */}
Help Center Frequently Asked
Questions
Find answers to common questions about our handcrafted ceramics, shipping, care instructions, and more.
{/* FAQ Items */}
{faqData.map((item, index) => ( {openIndex === index && (

{item.answer}

)}
))}
{/* Contact CTA */}

Still have questions?

We're here to help. Reach out to our customer support team.

Contact Us
); }; export default FAQ;