Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Last active April 23, 2020 18:04
Show Gist options
  • Save blogcacanid/702e76cc21bee05806ac3cbc0c841a20 to your computer and use it in GitHub Desktop.
Save blogcacanid/702e76cc21bee05806ac3cbc0c841a20 to your computer and use it in GitHub Desktop.
Home.jsx iPortofolio React JS
import React, { Component } from 'react';
class Home extends Component {
render() {
return (
<React.Fragment>
<section id="hero" className="d-flex flex-column justify-content-center align-items-center">
<div className="hero-container" data-aos="fade-in">
<h1>Alex Smith</h1>
<p>I'm <span className="typed" data-typed-items="Designer, Developer, Freelancer, Photographer"></span></p>
</div>
</section>
</React.Fragment>
);
}
}
export default Home;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment