import React from 'react'; import { motion } from 'framer-motion'; import InstagramFeed from '../components/InstagramFeed'; import SEO, { SITE_URL } from '../components/SEO'; const atelierSchema = { "@context": "https://schema.org", "@type": "AboutPage", "name": "The Studio | KNUTH Ceramics — Pottery in Corpus Christi, TX", "description": "Discover the KNUTH Ceramics atelier in Corpus Christi, Texas. Claudia Knuth creates wheel-thrown stoneware inspired by the raw textures and colors of the Texas Gulf Coast.", "url": `${SITE_URL}/atelier`, "breadcrumb": { "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Home", "item": `${SITE_URL}/` }, { "@type": "ListItem", "position": 2, "name": "Atelier", "item": `${SITE_URL}/atelier` } ] }, "about": { "@type": "Person", "name": "Claudia Knuth", "jobTitle": "Ceramic Artist & Potter", "email": "knuth.claudia@gmail.com", "knowsAbout": ["Wheel-throwing", "Stoneware pottery", "Coastal ceramics", "Custom dinnerware"] } }; const Atelier: React.FC = () => { return ( <>
{/* Intro */}
The Studio Formed by
Hand & Fire
Our atelier is a sanctuary of slow creation. Located in the heart of Corpus Christi, we practice the ancient art of wheel-throwing, honoring the raw beauty of the Texas Coast.
Pottery Studio in Corpus Christi
{/* Philosophy Section */}
{[ { title: "Coastal Clay", text: "We work with stoneware clay bodies that reflect the sandy textures of the Gulf Coast." }, { title: "Electric Firing", text: "Fired in an electric kiln, creating durable surfaces that mimic the bleached colors of driftwood and shell." }, { title: "Functional Art", text: "Designed to be used and loved. Our ceramics are durable, dishwasher safe, and meant for daily coastal living." } ].map((item, idx) => (

{item.title}

{item.text}

))}
); }; export default Atelier;