personal-site/pages/index.jsx

36 lines
1.6 KiB
React
Raw Normal View History

2022-01-06 13:03:06 +00:00
import Head from 'next/head'
2022-01-06 05:27:13 +00:00
import React from 'react'
import TextShuffler from '../components/actions/TextShuffler'
2022-03-11 10:43:00 +00:00
import threeJsAnimations from '../functions/frontend/threeJsAnimations'
2022-01-06 05:27:13 +00:00
import GeneralLayout from '../layouts/general_layout/GeneralLayout'
const index = () => {
2022-06-03 16:36:24 +00:00
2022-01-06 05:27:13 +00:00
return (
2022-07-27 17:16:20 +00:00
<React.Fragment>
2022-01-06 13:03:06 +00:00
<Head>
2022-03-11 12:19:52 +00:00
<title>Benjamin Toby | Fullstack developer, UI UX designer</title>
<meta name="description" content="UI/UX designer, Full Stack Web Developer, Web/graphic/motion designer, React Developer, Next JS developer, Node JS developer, Javascript Developer, Linux Ubuntu, DevOps, Nginx, MySQL developer, Freelancer" />
2022-01-06 13:03:06 +00:00
</Head>
2022-07-27 17:16:20 +00:00
<GeneralLayout pageName="home">
<h1><TextShuffler textInput="UI/UX designer, Full Stack Web Developer, Web/graphic/motion designer" /></h1>
<span className='hero-sub-text'>
<TextShuffler textInput="Hi, I'm Benjamin Toby, a fullstack web developer and UI/UX expert." delay={ 500 } />
</span>
<div className="hero-ctas-section">
<a href='/documents/Benjamin_Toby_CV-updated.pdf' download={ true }>See my resume</a>
<a href='https://www.linkedin.com/in/benjamin-toby/' target="_blank">Linkedin</a>
<a href='/contact' style={ {
backgroundColor: "transparent",
color: "white",
border: "2px solid white"
} }>Contact Me</a>
</div>
</GeneralLayout>
</React.Fragment>
2022-01-06 05:27:13 +00:00
)
}
export default index