Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@syamjayaraj
Created July 26, 2020 10:48
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 syamjayaraj/817b1acf4c21a4d327b1dbb6ed781bee to your computer and use it in GitHub Desktop.
Save syamjayaraj/817b1acf4c21a4d327b1dbb6ed781bee to your computer and use it in GitHub Desktop.
import React from "react";
import {Helmet} from "react-helmet";
function About() {
return (
<div className="about">
<Helmet>
<title>About - yoursite.com</title>
<meta name="description" content="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." />
<link rel="canonical" href="http://mysite.com/example" />
</Helmet>
<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