import React from 'react' import Head from 'next/head' import TextShuffler from '../components/actions/TextShuffler' import GeneralLayout from '../layouts/general_layout/GeneralLayout' import PortfolioEntry from '../components/PortfolioEntry' import threeJsAnimations from '../functions/frontend/threeJsAnimations' const about = () => { const portfolioEntries = require("../components/portfolioEntries.json"); React.useEffect(() => { threeJsAnimations() }, []) return ( My Work | Tben

{ portfolioEntries.map(entry => ) }
) } export default about