You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const Landing = () => (
|
|
|
|
<div className="landing">
|
|
|
|
<div className="container">
|
|
|
|
<span className="profile">
|
|
|
|
<img src="/img/profile.png" width="100%" height="100%" alt="" />
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span className="title">Guus van Meerveld</span>
|
|
|
|
<span className="subtitle">
|
|
|
|
TypeScript / Dart developer, <br />
|
|
|
|
currently working on Argo.
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<a href="#projects" className="button d-block m-auto">
|
|
|
|
Check out my projects
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Landing;
|