+ Welcome to lnc-web
+
+ {lnc.isConnected
+ ? 'You are now connected to your Lightning node.'
+ : 'Connect or Login to view your Lightning node info.'}
+
+
+
+);
+```
+
+In the [Page](./src/components/Page.tsx) component that displays the navbar, we can detect
+whether to display a button to Connect, Login, or Logout based on the `lnc.isConnected`
+and `lnc.credentials.isPaired` fields.
+
+```ts
+