diff --git a/client/src/App.js b/client/src/App.js index 1215eaa..cb9bcc7 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -10,13 +10,21 @@ import Footer from './components/footer'; export default function App() { return ( +
+ + + }/> + }/> + +
); } diff --git a/client/src/components/cardHolder.js b/client/src/components/cardHolder.js index 4eba3c4..4b9800a 100644 --- a/client/src/components/cardHolder.js +++ b/client/src/components/cardHolder.js @@ -3,13 +3,15 @@ import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; export default function CardHolder(props) { - return( + + {props.children} + + ); - } \ No newline at end of file diff --git a/client/src/components/characterCard.js b/client/src/components/characterCard.js index 37fe4de..f78d866 100644 --- a/client/src/components/characterCard.js +++ b/client/src/components/characterCard.js @@ -10,27 +10,44 @@ export default function CharacterCard(props) { const lastEpisode = props.character.lastEpisode; return( - + + + {characterName} + + + + + + + + + + + + +
First Episode:{firstEpisode}
Last Episode:{lastEpisode}
+
+
+
- ); } \ No newline at end of file diff --git a/client/src/components/footer.js b/client/src/components/footer.js index 1370397..d44b73f 100644 --- a/client/src/components/footer.js +++ b/client/src/components/footer.js @@ -1,7 +1,9 @@ import React from 'react'; + import { Github } from 'react-bootstrap-icons'; import { Globe } from 'react-bootstrap-icons'; import { Envelope } from 'react-bootstrap-icons'; + import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; @@ -17,9 +19,13 @@ export default function Footer() { + + criminalmindsapi © 2022 + + diff --git a/client/src/components/greeting.js b/client/src/components/greeting.js index f9d894f..ece1347 100644 --- a/client/src/components/greeting.js +++ b/client/src/components/greeting.js @@ -4,7 +4,6 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; export default function Greeting() { - return ( @@ -34,5 +33,4 @@ export default function Greeting() { ); - } \ No newline at end of file diff --git a/client/src/components/loading.js b/client/src/components/loading.js index 1565269..71b2474 100644 --- a/client/src/components/loading.js +++ b/client/src/components/loading.js @@ -5,11 +5,13 @@ import Col from 'react-bootstrap/Col'; import { TailSpin } from 'react-loading-icons'; export default function Loading() { - return ( + + + +
Loading...
+ +
+
); - } \ No newline at end of file diff --git a/client/src/components/navbar.js b/client/src/components/navbar.js index d11d9a3..0eef82c 100644 --- a/client/src/components/navbar.js +++ b/client/src/components/navbar.js @@ -5,7 +5,6 @@ import { NavLink } from 'react-router-dom'; import Container from 'react-bootstrap/Container'; export default function NavBar() { - return ( ) - } \ No newline at end of file diff --git a/client/src/index.js b/client/src/index.js index 0aba3ad..28f15bb 100644 --- a/client/src/index.js +++ b/client/src/index.js @@ -8,9 +8,13 @@ const root = ReactDOM.createRoot(document.getElementById('root')); root.render( + + + + ); diff --git a/client/src/pages/about.js b/client/src/pages/about.js index 5451268..0830d5d 100644 --- a/client/src/pages/about.js +++ b/client/src/pages/about.js @@ -13,7 +13,13 @@ export default function About() { return sections.map(section => { - return + return ( + + + + ); }); @@ -27,7 +33,7 @@ export default function About() { -

Wanna know more?

+

Wheels up...

diff --git a/client/src/pages/home.js b/client/src/pages/home.js index 56cc64f..1c46759 100644 --- a/client/src/pages/home.js +++ b/client/src/pages/home.js @@ -48,10 +48,15 @@ export default function Home() { return ( <> + {characters.length > 0 ? + + {getCharacterCards()} + + : } );