Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created April 23, 2020 18:15
Show Gist options
  • Save blogcacanid/da453fadf1826ff55d017ff45fe4e54b to your computer and use it in GitHub Desktop.
Save blogcacanid/da453fadf1826ff55d017ff45fe4e54b to your computer and use it in GitHub Desktop.
Resume.jsx iPortofolio React JS
import React, { Component } from 'react';
class Resume extends Component {
render() {
return (
<React.Fragment>
<main id="main">
<section id="resume" className="resume">
<div className="container">
<div className="section-title">
<h2>Resume</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div className="row">
<div className="col-lg-6" data-aos="fade-up">
<h3 className="resume-title">Sumary</h3>
<div className="resume-item pb-0">
<h4>Alex Smith</h4>
<p><em>Innovative and deadline-driven Graphic Designer with 3+ years of experience designing and developing user-centered digital/print marketing material from initial concept to final, polished deliverable.</em></p>
<ul>
<li>Portland par 127,Orlando, FL</li>
<li>(123) 456-7891</li>
<li>[email protected]</li>
</ul>
</div>
<h3 className="resume-title">Education</h3>
<div className="resume-item">
<h4>Master of Fine Arts &amp; Graphic Design</h4>
<h5>2015 - 2016</h5>
<p><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p>Qui deserunt veniam. Et sed aliquam labore tempore sed quisquam iusto autem sit. Ea vero voluptatum qui ut dignissimos deleniti nerada porti sand markend</p>
</div>
<div className="resume-item">
<h4>Bachelor of Fine Arts &amp; Graphic Design</h4>
<h5>2010 - 2014</h5>
<p><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p>Quia nobis sequi est occaecati aut. Repudiandae et iusto quae reiciendis et quis Eius vel ratione eius unde vitae rerum voluptates asperiores voluptatem Earum molestiae consequatur neque etlon sader mart dila</p>
</div>
</div>
<div className="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 className="resume-title">Professional Experience</h3>
<div className="resume-item">
<h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5>
<p><em>Experion, New York, NY </em></p>
<ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul>
</div>
<div className="resume-item">
<h4>Graphic design specialist</h4>
<h5>2017 - 2018</h5>
<p><em>Stepping Stone Advertising, New York, NY</em></p>
<ul>
<li>Developed numerous marketing programs (logos, brochures,infographics, presentations, and advertisements).</li>
<li>Managed up to 5 projects or tasks at a given time while under pressure</li>
<li>Recommended and consulted with clients on the most appropriate graphic design</li>
<li>Created 4+ design presentations and proposals a month for clients and account managers</li>
</ul>
</div>
</div>
</div>
</div>
</section>
</main>
</React.Fragment>
);
}
}
export default Resume;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment