@@ -5,6 +5,7 @@ import SearchComponents from './SearchComponents';
55import "./Header.css"
66import Sort from "./Sort"
77import { MovieModal } from './MovieModal' ;
8+ import "./footer.css"
89// let pageNumber = 1
910//const url = `https://api.themoviedb.org/3/movie/now_playing?language=en-US&page=${pageNumber}`;
1011const options = {
@@ -57,15 +58,32 @@ function App(){
5758 return (
5859 < div className = "App" >
5960 < header className = "Header" >
61+ { /* <a href="App.jsx">NOW PLAYING</a>
62+ <a href="#">FAVOURITES</a>
63+ <a href="#">WATCHED</a> */ }
6064 < h1 > 🎥 Flixster 🎬</ h1 >
6165 < SearchComponents setResults = { setResults } />
6266 < Sort setResults = { setResults } movies = { results } />
6367 </ header >
6468 < MovieList onClick = { ( movie ) => { setMovie ( movie ) ; setOpenModal ( true ) } } results = { results } movie = { movie } />
6569 { openModal && < MovieModal closeModal = { setOpenModal } keyId = { movie . id } image = { movie . image } overview = { movie . overview } release_date = { movie . release_date } title = { movie . title } /> }
66- < button onClick = { toNextPage } > load more</ button >
67- < footer >
68- < p > © joseph akintunde 2024</ p >
70+ < button className = "loadBtn" onClick = { toNextPage } > LOAD MORE</ button >
71+ < footer className = 'Footer' >
72+ < p > © the joseph akintunde company llc 2030.
73+ All Rights Reserved
74+ </ p >
75+ < a className = "tospp" href = "#" > Terms of Service and Privacy Policy</ a >
76+ < div className = 'socials' >
77+ < a href = "https://www.instagram.com/jausephh/?hl=en" >
78+ < img width = "50px" src = "src/img/instagram-logo-black-transparent.png" alt = "" />
79+ </ a >
80+ < a href = "https://www.linkedin.com/in/joseph-akintunde-4a1492288/" >
81+ < img width = "40px" src = "src/img/linkedin-icon-1-logo-png-transparent.png" alt = "" />
82+ </ a >
83+ < a href = "https://github.com/joseph-akintunde/flixster-starter" >
84+ < img className = 'git' width = "40px" src = "src/img/imagesgit.png" />
85+ </ a >
86+ </ div >
6987 </ footer >
7088 </ div >
7189 )
0 commit comments