-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added about page and changed home page
- Loading branch information
Showing
5 changed files
with
64 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React, { Component } from "react"; | ||
import { withRouter } from 'react-router-dom' | ||
import music from '../music.jpg' | ||
|
||
|
||
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={music} | ||
/> | ||
</div> | ||
<div class="col-lg-5"> | ||
<h1 class="font-weight-light">About</h1> | ||
<p> | ||
This project has the objective of showing how many times each word | ||
is used in, either a particular song, or a particular album, using the Genious website. | ||
Graphs are displayed for people who like these kind of statistics! | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default About; |
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.