-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Login and Register also Discover Page Implemented
- Loading branch information
1 parent
895422f
commit 1eb1da9
Showing
11 changed files
with
104 additions
and
34 deletions.
There are no files selected for viewing
Binary file not shown.
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
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,15 @@ | ||
.discover-container{ | ||
display: flex; | ||
flex-direction: column; | ||
|
||
} | ||
|
||
.discover-list-header{ | ||
flex-grow: 1; | ||
margin-top: 8%; | ||
} | ||
|
||
.movies-show-container{ | ||
padding-left:2%; | ||
|
||
} |
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,43 @@ | ||
import React, { Component } from 'react'; | ||
import NavBar from '../components/NavBar'; | ||
import '../Assets/CSS/Discover.css'; | ||
import MovieShowItem from '../components/MovieShowItem'; | ||
class Discover extends Component { | ||
render() { | ||
return ( | ||
<div className="discover-container"> | ||
<NavBar></NavBar> | ||
<div className="discover-list-header"> | ||
<hr className="line" /> | ||
<div className="header-tabs"> | ||
<button className="header-btns">Trending</button> | ||
<div className="ver-line"></div> | ||
<button className="header-btns">Popular</button> | ||
</div> | ||
<hr className="line" /> | ||
</div> | ||
<div className="movies-show-container"> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
<MovieShowItem></MovieShowItem> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default Discover; |
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
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