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' const about = () => { const portfolioEntries = require("../components/portfolioEntries.json"); return ( My Work | Tben

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