import React from "react"; import { css } from "@emotion/css"; import Container from "../../components/Container"; import { projects } from "./data/project"; type Project = { title: string; url?: string; description: string; cat: string; tags: string[]; }; const ProjectUnit: React.FC = ({ title, url, description, cat, tags, }) => { return (

{title}

{description}

{tags.map(tag => ( {tag} ))}

{cat}
); }; const Exp: React.FC = () => { return (

Things I've built

Some tools, libraries, and apps over time:

{projects.map(unit => ( ))}
); }; export default Exp;