diff --git a/README.md b/README.md
index 7fb3779..03998eb 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ Free meal planner for cooks short on ideas! (like me …)

-### Screenshot
+### Screenshots
#### Home page
diff --git a/TODO.md b/TODO.md
index 895dfe8..c61b4a1 100644
--- a/TODO.md
+++ b/TODO.md
@@ -14,4 +14,4 @@
- [ ] Use Css-in-Js
- [ ] Redirect to 404
- [x] Typescript
-- [ ] strict typing
+- [x] strict typing
diff --git a/package.json b/package.json
index 212fa14..4cfb94e 100644
--- a/package.json
+++ b/package.json
@@ -38,6 +38,7 @@
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
+ "prettier": "^2.5.1",
"typescript": "^4.2.3"
}
}
diff --git a/src/components/LogInButton.tsx b/src/components/LogInButton.tsx
deleted file mode 100644
index 4202fda..0000000
--- a/src/components/LogInButton.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import { useAuth0 } from "../utils/auth0-spa";
-
-type Props = { color: string };
-
-export const LogInButton = ({ color }: Props) => {
- const { loginWithRedirect } = useAuth0();
- const handleClick = () => loginWithRedirect({});
-
- return (
-
- );
-};
diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index 9cf8b8b..5a68086 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -1,47 +1,40 @@
import { MouseEventHandler } from "react";
import { Link } from "react-router-dom";
import { buttonURL, links } from "../constants";
-import { useAuth0 } from "../utils/auth0-spa";
import { FooterLink } from "./FooterLink";
-import { LogInButton } from "./LogInButton";
import { Logo } from "./Logo";
-import { LogOutButton } from "./LogOutButton";
import { RandomButton } from "./RandomButton";
type Props = { openNavClick: MouseEventHandler };
-export const Navbar = ({ openNavClick }: Props) => {
- const { isAuthenticated } = useAuth0();
-
- return (
-
-