import React from 'react' import Head from 'next/head' import TextShuffler from '../components/actions/TextShuffler' import GeneralLayout from '../layouts/general_layout/GeneralLayout' import threeJsAnimations from '../functions/frontend/threeJsAnimations' const about = () => { React.useEffect(() => { threeJsAnimations() }, []) return ( About Me

See my resume Linkedin
) } export default about