import React from 'react'; import { motion } from 'framer-motion'; 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 oxidation to cone 6, 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;