Last active
April 23, 2020 18:04
-
-
Save blogcacanid/702e76cc21bee05806ac3cbc0c841a20 to your computer and use it in GitHub Desktop.
Home.jsx iPortofolio React JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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