-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adjusting styles, removing header, adding byline
- Loading branch information
Showing
4 changed files
with
99 additions
and
53 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
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 |
---|---|---|
@@ -1,29 +1,54 @@ | ||
import React from 'react'; | ||
import "../styles/Intro.scss"; | ||
import React from 'react' | ||
import '../styles/Intro.scss' | ||
|
||
const Intro = (props) => { | ||
|
||
return ( | ||
<div className="container" id="intro-container"> | ||
<div className="row"> | ||
<h1>Letterboxd Movie Recommendations</h1> | ||
</div> | ||
<div className="row intro-paragraph"> | ||
<p> | ||
This site will gather movie ratings from any Letterboxd user and provide movie recommendations based on | ||
ratings data from thousands of other users. | ||
This site will gather movie ratings from any Letterboxd user | ||
and provide movie recommendations based on ratings data from | ||
thousands of other users. | ||
</p> | ||
<p> | ||
The more movies you've rated on Letterboxd, the better and | ||
more personalized the recommendations will be, but it can | ||
provide recommendations to any user. If you'd like to filter | ||
out more well-known movies (based on the number of | ||
Letterboxd reviews), you can do so using the last slider | ||
below. | ||
</p> | ||
</div> | ||
<div className="row byline"> | ||
<p> | ||
The more movies you've rated on Letterboxd, the better and more personalized | ||
the recommendations will be, but it can provide recommendations to any user. If you'd like to filter out more well-known | ||
movies (based on the number of Letterboxd reviews), you can do so using the last slider below. | ||
By{' '} | ||
<span className="bolded"> | ||
{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer" | ||
href="https://www.samlearner.com/" | ||
> | ||
Sam Learner | ||
</a> | ||
</span>{' '} <a | ||
target="_blank" | ||
rel="noreferrer" | ||
href="https://letterboxd.com/samlearner/" | ||
> | ||
<img | ||
className="icon-img" | ||
src="images/letterboxd.svg" | ||
alt="letterboxd link" | ||
/> | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
|
||
|
||
|
||
export default Intro; | ||
export default Intro |
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