Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created February 9, 2020 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/757ce004345877741fa8612503a8ed41 to your computer and use it in GitHub Desktop.
Save techomoro/757ce004345877741fa8612503a8ed41 to your computer and use it in GitHub Desktop.
import React from "react";
function About() {
return (
<div className="about">
<div class="container">
<div class="row align-items-center my-5">
<div class="col-lg-7">
<img
class="img-fluid rounded mb-4 mb-lg-0"
src="http://placehold.it/900x400"
alt=""
/>
</div>
<div class="col-lg-5">
<h1 class="font-weight-light">About</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of
type and scrambled it to make a type specimen book.
</p>
</div>
</div>
</div>
</div>
);
}
export default About;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment