personal-site/pages/about.jsx

32 lines
1.7 KiB
React
Raw Normal View History

2022-01-06 05:27:13 +00:00
import React from 'react'
2022-01-06 13:03:06 +00:00
import Head from 'next/head'
2022-01-06 05:27:13 +00:00
import TextShuffler from '../components/actions/TextShuffler'
import GeneralLayout from '../layouts/general_layout/GeneralLayout'
2022-03-11 10:43:00 +00:00
import threeJsAnimations from '../functions/frontend/threeJsAnimations'
2022-01-06 05:27:13 +00:00
const about = () => {
2022-03-11 10:43:00 +00:00
React.useEffect(() => {
threeJsAnimations()
}, [])
2022-01-06 05:27:13 +00:00
return (
<GeneralLayout>
2022-01-06 13:03:06 +00:00
<Head>
<title>About Me</title>
<meta name="description" content="Ben of all trade, master of all! Learn more about me" />
</Head>
2022-01-06 05:27:13 +00:00
<h1><TextShuffler textInput="Ben of all trade, master of all!" /></h1>
<span className='hero-sub-text'>
2022-03-11 10:43:00 +00:00
<TextShuffler textInput="So the thing about me is: I want to know it all, I want to master it all: hence I've dug deep into almost every aspect of web design and development. In the process I've developed my most valuable skill: learnabiltiy: there are so many languages and libraries out there: about a dozen different ways to achieve the same result: even in my quest to master it all, it is not possible to master all the available languages, libraries and other web technologies: but whichever knowledge is needed at any given time, I adapt and learn: very quickly." />
2022-01-06 05:27:13 +00:00
</span>
<div className="hero-ctas-section">
2022-03-11 10:43:00 +00:00
<a href='/documents/Benjamin_Toby_CV.pdf' download={ true }>See my resume</a>
2022-01-06 05:27:13 +00:00
<a href='https://www.linkedin.com/in/benjamin-toby/' target="_blank">Linkedin</a>
</div>
2022-03-11 10:43:00 +00:00
<div className='fixed top-0 left-0 -z-10' id='homepage-animation-wrapper'></div>
2022-01-06 05:27:13 +00:00
</GeneralLayout>
)
}
export default about