diff --git a/src/App.js b/src/App.js index 014aa5e..e4735d6 100644 --- a/src/App.js +++ b/src/App.js @@ -10,6 +10,11 @@ import { Contact } from "./pages/Contact" function App() { const FBapp = initializeApp(FirebaseConfig) + // navigation array + const navItems = [ + { label: "Home", link: "/" }, + ] + const saySomething = ( word ) => { alert( word ) } @@ -19,7 +24,7 @@ function App() { } /> } /> - } /> + } /> ); diff --git a/src/components/Header.js b/src/components/Header.js index 18309ed..02aea35 100644 --- a/src/components/Header.js +++ b/src/components/Header.js @@ -10,6 +10,8 @@ export function Header ( props ) { Home About Contact + Create Account + Sign in )