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 quiet hills, we practice the ancient art of wheel-throwing, honoring the raw beauty of natural clay.
Atelier Studio
{/* Philosophy Section */}
{[ { title: "Material", text: "We work exclusively with locally sourced stoneware clay bodies, rich in iron and character." }, { title: "Process", text: "Every piece is wheel-thrown, trimmed, and glazed by hand, ensuring no two objects are identical." }, { title: "Function", text: "Designed to be used and loved. Our ceramics are durable, food-safe, and meant for daily rituals." } ].map((item, idx) => (

{item.title}

{item.text}

))}
); }; export default Atelier;