--- layout: tutorial title: Add navigation description: Add navigation to your Vue.js app with Appwrite authentication and pinia stores. step: 5 --- In our app we want to have a navigation bar that is always visible. Use the `user` store to show either: - a logout button if the user is logged in. - a login button if the user is not logged in. Update the App component in `src/App.vue`: ```vue ```