Implement user auth with Firebase

This commit is contained in:
Conor McNamara
2023-03-06 20:23:54 +00:00
parent 2d41b93932
commit ef9b4847af
24 changed files with 1402 additions and 1258 deletions

View File

@ -1,6 +1,5 @@
<template>
<navbar></navbar>
<Navbar />
<h1>Insights</h1>
<div v-if="this.insights">
@ -27,7 +26,7 @@
<script>
import {store} from '../store/store'
import navbar from '../components/navbar.vue'
import Navbar from '../components/Navbar.vue'
export default {
name: "InsightsPage",
@ -43,8 +42,7 @@ export default {
},
components: {
// SidebarPanel
navbar
Navbar
},
created() {
@ -58,14 +56,7 @@ export default {
</script>
<style scoped>
.navbarLink{
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 24px;
}
body{
background-color: rgb(44, 102, 102);
}
</style>