|
@@ -3,7 +3,7 @@
|
|
|
<div class="header-left">
|
|
<div class="header-left">
|
|
|
<a href="/" class="brand" aria-label="Home">
|
|
<a href="/" class="brand" aria-label="Home">
|
|
|
<NuxtImg src="/logo.png" alt="DDAC logo" class="brand-logo" width="34" height="34" />
|
|
<NuxtImg src="/logo.png" alt="DDAC logo" class="brand-logo" width="34" height="34" />
|
|
|
- <h1 class="brand-title">DDAC</h1>
|
|
|
|
|
|
|
+ <h1 class="brand-title">{{ title }}</h1>
|
|
|
</a>
|
|
</a>
|
|
|
</div>
|
|
</div>
|
|
|
<nav class="header-nav" role="navigation" aria-label="Main navigation">
|
|
<nav class="header-nav" role="navigation" aria-label="Main navigation">
|
|
@@ -55,6 +55,7 @@
|
|
|
</header>
|
|
</header>
|
|
|
</template>
|
|
</template>
|
|
|
<script setup>
|
|
<script setup>
|
|
|
|
|
+const title = import.meta.env.VITE_APP_NAME
|
|
|
const { y: scrollY } = useWindowScroll()
|
|
const { y: scrollY } = useWindowScroll()
|
|
|
const lastScrollY = ref(0)
|
|
const lastScrollY = ref(0)
|
|
|
const isHidden = ref(false)
|
|
const isHidden = ref(false)
|