chore: improve html archi + header styles

This commit is contained in:
2025-12-05 19:29:27 +01:00
parent dd54dc88a9
commit 756142b9aa
2 changed files with 63 additions and 37 deletions

View File

@@ -1,68 +1,92 @@
<script setup lang="ts"> <script setup lang="ts">
const appConfig = useAppConfig() const appConfig = useAppConfig()
const { isScrolled } = useScroll(100)
const scrollThreshold = ref<number>(0)
onMounted(() => {
const updateThreshold = () => {
const viewportHeight = window.innerHeight || document.documentElement.clientHeight;
scrollThreshold.value = Math.round(viewportHeight * 0.68);
}
updateThreshold()
})
const effectiveScrollThreshold = computed(() => {
return import.meta.client ? scrollThreshold.value : 0;
});
const { isScrolled } = useScroll(effectiveScrollThreshold.value)
</script> </script>
<template> <template>
<header <header class="app-header">
class="app-header"
:class="{ 'is-fixed': isScrolled }"
>
<img
v-if="isScrolled"
src="~/assets/images/brand-desktop.svg"
:alt="appConfig.title"
/>
<template v-if="!isScrolled">
<img class="brand-logo" src="~/assets/images/brand-logo.svg" :alt="`${appConfig.title} - Logo`" /> <img class="brand-logo" src="~/assets/images/brand-logo.svg" :alt="`${appConfig.title} - Logo`" />
<img src="~/assets/images/brand-mobile.svg" :alt="appConfig.title" /> <img class="brand" src="~/assets/images/brand-mobile.svg" :alt="appConfig.title" />
<p>{{ appConfig.description }}</p> <p>{{ appConfig.description }}</p>
</template>
<NuxtLink v-if="isScrolled" to="#about"> About</NuxtLink>
</header> </header>
<header class="app-header--sticky" v-if="isScrolled">
<img src="~/assets/images/brand-desktop.svg" :alt="appConfig.title" />
<NuxtLink to="#about"> About</NuxtLink>
</header>
</template> </template>
<style lang="css" scoped> <style lang="css" scoped>
.app-header { @keyframes slideDown {
from {
transform: translateY(-100%);
}
to {
transform: translateY(0);
}
}
.app-header,
.app-header--sticky {
display: flex;
background-color: var(--primary-color); background-color: var(--primary-color);
color: var(--secondary-color); color: var(--secondary-color);
display: flex;
gap: 1rem;
transition: all 0.3s ease;
height: 68vh;
padding: 3rem 2rem;
flex-direction: column;
} }
.app-header.is-fixed { .app-header {
box-sizing: border-box; gap: 1rem;
flex-direction: column;
padding: 3rem 2rem;
height: 68vh;
}
.app-header--sticky {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; width: 100%;
right: 0;
height: 34px; height: 34px;
padding: 0.75rem 2rem; padding: 0.75rem 2rem;
flex-direction: row;
z-index: 10;
align-items: center; align-items: center;
animation: slideDown 0.3s ease;
z-index: 10;
box-sizing: border-box;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
} }
.app-header.is-fixed img { .app-header--sticky img {
height: 11px; height: 11px;
} }
.brand-logo { .brand-logo {
align-self: flex-end; align-self: flex-end;
margin-bottom: auto; margin-bottom: auto;
width: 36vw; width: 135px;
}
.brand {
width: 300px;
} }
a { a {
margin-left: auto; margin-left: auto;
font-weight: 500; font-weight: 500;
color: inherit;
} }
p { p {

View File

@@ -1,7 +1,9 @@
<template> <template>
<main> <div>
<AppHeader /> <AppHeader />
<main>
<slot /> <slot />
<AppFooter />
</main> </main>
<AppFooter />
</div>
</template> </template>