diff --git a/src/App.js b/src/App.js
index 4024112..56d4753 100644
--- a/src/App.js
+++ b/src/App.js
@@ -4,7 +4,7 @@
// Global npm libraries
import React from 'react'
-import { Container, Row, Col } from 'react-bootstrap'
+// import { Container, Row, Col } from 'react-bootstrap'
import { useQueryParam, StringParam } from 'use-query-params'
// Local libraries
@@ -16,6 +16,7 @@ import AsyncLoad from './services/async-load'
import ServerSelect from './components/servers'
import Footer from './components/footer'
import GetBalance from './components/balance'
+import NavMenu from './components/nav-menu'
// Default restURL for a back-end server.
let serverURL = 'https://free-bch.fullstack.cash'
@@ -100,6 +101,7 @@ class App extends React.Component {
<>
+
{this.state.walletInitialized ? : }
@@ -124,15 +126,7 @@ function UninitializedView (props) {
const heading = 'Loading Blockchain Data...'
return (
-
-
-
- PSF Web3 Demo
-
-
-
-
-
+
)
}
@@ -140,13 +134,7 @@ function UninitializedView (props) {
function InitializedView (props) {
return (
<>
-
-
-
- PSF Web3 Demo
-
-
-
+
>
)
diff --git a/src/components/nav-menu/index.js b/src/components/nav-menu/index.js
new file mode 100644
index 0000000..f5ebb2b
--- /dev/null
+++ b/src/components/nav-menu/index.js
@@ -0,0 +1,58 @@
+/*
+ This component controlls the navigation menu.
+
+ Inspired from this example:
+ https://codesandbox.io/s/react-bootstrap-hamburger-menu-example-rnud4?from-embed
+*/
+
+// Global npm libraries
+import React from 'react'
+import { Nav, Navbar, NavDropdown, Image } from "react-bootstrap"
+import Logo from './psf-logo.png'
+// import { ReactComponent as Logo } from "./psf-logo.png"
+
+class NavMenu extends React.Component {
+ constructor(props) {
+ super(props)
+ console.log('NavMenu')
+ }
+
+ render() {
+ return(
+ <>
+
+
+ {' '}
+ PSF Web3 Demo
+
+
+
+
+
+
+
+
+ >
+ )
+ }
+}
+
+export default NavMenu
diff --git a/src/components/nav-menu/psf-logo.png b/src/components/nav-menu/psf-logo.png
new file mode 100644
index 0000000..8a16d16
Binary files /dev/null and b/src/components/nav-menu/psf-logo.png differ