diff --git a/src/App.js b/src/App.js index e4735d6..cbb345d 100644 --- a/src/App.js +++ b/src/App.js @@ -13,7 +13,18 @@ function App() { // navigation array const navItems = [ { label: "Home", link: "/" }, + { label: "About", link: "/about" }, + { label: "Contact", link: "/contact" }, + { label: "Create Account", link: "/signup" }, + { label: "Log in", link: "/signin" }, ] +// navigation for authenticated user +const AuthNavItems = [ + { label: "Home", link: "/" }, + { label: "About", link: "/about" }, + { label: "Contact", link: "/contact" }, + { label: "Log out", link: "/signout"} +] const saySomething = ( word ) => { alert( word )