Advertisement
MartinYanchev-99

react typical

Oct 28th, 2021
970
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react'
  2. import './HeroSection.css'
  3. import '../ProjectCard/ProjectCard'
  4. import Typical from 'react-typical'
  5.  
  6. function HeroSection() {
  7.     return (
  8.         <section className="hero-section">
  9.             <div class="hero-details">
  10.  
  11.                 <h1 className="section-header">Hi , I am Martin !</h1>
  12.                 <div className="hero-paragraph">
  13.  
  14.                     <p>I am a <Typical loop={Infinity} steps={['Web developer', 1000, 'Student' , 1000, 'Footbaler', 1000]} /></p>
  15.                     <p>Interested in Python and Javascript.</p>
  16.                 </div>
  17.                 <div className=".css-prop-demo .el cta-wrapper">
  18.                     <a href="#cv" class="cta-btn">Download CV</a>
  19.  
  20.                 </div>
  21.             </div>
  22.         </section>
  23.     )
  24. }
  25.  
  26. export default HeroSection;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement