diff --git a/client/public/favicon.ico b/client/public/favicon.ico
deleted file mode 100644
index a11777c..0000000
Binary files a/client/public/favicon.ico and /dev/null differ
diff --git a/client/public/favicon.png b/client/public/favicon.png
new file mode 100644
index 0000000..5089543
Binary files /dev/null and b/client/public/favicon.png differ
diff --git a/client/public/favicon.svg b/client/public/favicon.svg
new file mode 100644
index 0000000..cd9efc9
--- /dev/null
+++ b/client/public/favicon.svg
@@ -0,0 +1,123 @@
+
\ No newline at end of file
diff --git a/client/public/index.html b/client/public/index.html
index 34a7388..dd1c456 100644
--- a/client/public/index.html
+++ b/client/public/index.html
@@ -3,11 +3,18 @@
+
+
+ type="image/png"
+ href="%PUBLIC_URL%/favicon.png"
+ >
+
+
+
+
+
+
+ The Criminal Minds API
+
+
+
+ Checkout the documentation.
+
+
+
+
+
+
+
+ );
+
+}
\ No newline at end of file
diff --git a/client/src/components/navbar.js b/client/src/components/navbar.js
index 1f3b304..28dae95 100644
--- a/client/src/components/navbar.js
+++ b/client/src/components/navbar.js
@@ -1,4 +1,4 @@
-import React from "react";
+import React from 'react';
import Navbar from 'react-bootstrap/Navbar';
import Nav from 'react-bootstrap/Nav';
import { NavLink } from 'react-router-dom';
@@ -8,36 +8,53 @@ export default function NavBar() {
return (
+
- criminalmindsapi
+ criminalmindsapi
-
+
+
+
-
+
+
)
diff --git a/client/src/pages/about.js b/client/src/pages/about.js
index d453413..bebfc29 100644
--- a/client/src/pages/about.js
+++ b/client/src/pages/about.js
@@ -1,4 +1,4 @@
-import React from "react";
+import React from 'react';
export default function About() {
return (
diff --git a/client/src/pages/home.js b/client/src/pages/home.js
index cc7444b..f9457e2 100644
--- a/client/src/pages/home.js
+++ b/client/src/pages/home.js
@@ -1,9 +1,11 @@
-import React from "react";
+import React from 'react';
+
+import Greeting from '../components/greeting';
export default function Home() {
return (
<>
- Home
+
>
);
}
\ No newline at end of file
diff --git a/client/src/styles/app.css b/client/src/styles/app.css
index e69de29..b6ca0a2 100644
--- a/client/src/styles/app.css
+++ b/client/src/styles/app.css
@@ -0,0 +1,14 @@
+/* Bootstrap Overrides */
+
+.navbar-toggler:focus,
+.navbar-toggerl:active:focus {
+
+ box-shadow: none;
+
+}
+
+/* App Specific */
+
+.highlight {
+ color: #912718;
+}
\ No newline at end of file