Playground

Snapshots

Welcome to the Playground: my digital sketchbook for in-between moments. Here you'll find small experiments, curious ideas, and quick renderings that I create when stepping away from my industrial design projects. It’s a space to try new tools, test thoughts, or simply enjoy the freedom of playing with form and function.

// Paste a code snippet
import { motion } from "framer-motion";

function Component() {
    return (
        <motion.div
            transition={{ ease: "linear" }}
            animate={{ rotate: 360, scale: 2 }}
        />
    );
}