Adding a ton of stuff

This commit is contained in:
2026-07-17 04:39:18 -07:00
parent 8d9fe8e75d
commit de28a67417
63 changed files with 2027 additions and 613 deletions
+1 -9
View File
@@ -30,10 +30,7 @@
class="main-head pl-2"
>
<div class="mr-3">
<PublicAppLogo
to="/"
:animated="isHomePage"
/>
<PublicAppLogo to="/" />
</div>
<v-spacer />
@@ -51,17 +48,12 @@
</template>
<script setup lang="ts">
import { computed } from "vue"
import { useRoute } from "vue-router"
import { useDisplay } from "vuetify"
import { useAuth0 } from "@auth0/auth0-vue"
import ProfileMenu from "@/components/layout/ProfileMenu.vue"
import PublicAppLogo from "@/components/common/PublicAppLogo.vue"
const route = useRoute()
const isHomePage = computed(() => route.name === "HomePage")
const { mobile } = useDisplay()
const { isAuthenticated } = useAuth0()
</script>