diff --git a/README.md b/README.md
index 02aac3f..27aa180 100644
--- a/README.md
+++ b/README.md
@@ -1,70 +1,30 @@
-# Getting Started with Create React App
+# Book Browser
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
+Book Browser is a search app for choosing your next great read. If you're not sure what you are looking for, the app shows the current New York Times best seller lists for fiction and nonfiction. You can also search one of many popular author choices or use the search bar to find a specific book. Choose a book from the list to read more details and find links to a preview of the chosen book or a purchase link to purchase the e-book.
-## Available Scripts
+![](book-browser-search.gif)
-In the project directory, you can run:
+# Technologies Used
-### `yarn start`
+- HTML
+- CSS
+- JavaScript
+- React.js
+- Bootstrap
+- Heroku
+- New York Times Books API - https://developer.nytimes.com/docs/books-product/1/overview
+- Google Books API - https://developers.google.com/books
-Runs the app in the development mode.\
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
+# Getting Started/Installation Instructions
-The page will reload if you make edits.\
-You will also see any lint errors in the console.
+Link to deployed app on Heroku:
+https://kj-book-browser.herokuapp.com/
-### `yarn test`
+OR
-Launches the test runner in the interactive watch mode.\
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
+clone this project from GitHub. Open in your preferred text editor and start your live server to run on your local machine.
-### `yarn build`
+# Contribution Guidelines:
-Builds the app for production to the `build` folder.\
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.\
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `yarn eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
-
-If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
-
-You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
-
-### Code Splitting
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
-
-### Analyzing the Bundle Size
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
-
-### Making a Progressive Web App
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
-
-### Advanced Configuration
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
-
-### Deployment
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
-
-### `yarn build` fails to minify
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
+I welcome any feedback on this app. Please let me know if you have any ideas that would improve on this project - I am especially open to new features suggestions and input on making the currrent code run more efficiently.
+If you would like to contribute, please fork/clone this repo, make you changes, and submit a pull request.
diff --git a/book-browser-search.gif b/book-browser-search.gif
new file mode 100644
index 0000000..621cc80
Binary files /dev/null and b/book-browser-search.gif differ
diff --git a/public/favicon.ico b/public/favicon.ico
index a11777c..7b80a25 100644
Binary files a/public/favicon.ico and b/public/favicon.ico differ
diff --git a/public/index.html b/public/index.html
index a705340..e4ece69 100644
--- a/public/index.html
+++ b/public/index.html
@@ -23,7 +23,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
-
React App
+ Book Browser
diff --git a/src/App.js b/src/App.js
index b9a0e42..d39ce9e 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,21 +1,79 @@
-import React from 'react';
-import { Route } from 'react-router-dom';
+import React, { useState, useEffect } from 'react';
+import { Route, Switch } from 'react-router-dom';
import Nav from './components/Nav';
import Home from './components/Home';
import BookList from './components/BookList';
-import SearchForm from './components/SearchForm';
+import BookDetail from './components/BookDetail';
+import NotFound from './components/NotFound';
+import Footer from './components/Footer';
const App = () => {
+ let [books, setBooks] = useState(null);
+ const [searchObj, setSearchObj] = useState({
+ title: '',
+ author: '',
+ isbn: '',
+ });
+ useEffect(() => {
+ fetch(
+ `https://www.googleapis.com/books/v1/volumes?&maxResults=25&q=${
+ searchObj.title ? `intitle:${searchObj.title}&` : ''
+ }
+ ${searchObj.author ? `inauthor:${searchObj.author}&` : ''}
+ ${searchObj.isbn ? `isbn:${searchObj.isbn}&` : ''}
+ key=${process.env.REACT_APP_KEY}`
+ )
+ .then((res) => res.json())
+ .then((res) => {
+ setBooks(res.items);
+ })
+ .catch(console.error);
+ }, [searchObj.title, searchObj.author, searchObj.isbn]);
return (