How can I ensure that the component SiteHead only appears at the very top of the HomeView page, above the SiteNavigation component?
If I place the SiteHead component within the HomeView.vue code, it ends up below SiteNavigation. Here is my App.vue code:
<template>
<div class="flex flex-col min-h-screen font-Roboto bg-back-light dark:bg-back-dark">
<RouterView />
<SiteFooter />
</div>
</template>
<script setup>
import {RouterView} from "vue-router";
import SiteNavigation from "./components/SiteNavigation.vue";
import SiteFooter from "./components/SiteFooter.vue";
import SiteHead from "./components/SiteHead.vue";
</script>
<style lang="scss" scoped>
</style>
And this is my HomeView.vue code:
<script setup>
</script>
<template>
<main>
<p class="text-white p-10">Home</p>
</main>
</template>