feat(header): create basic header

This commit is contained in:
2026-05-14 23:48:10 +02:00
parent ec09713572
commit 864d9dc0d0
2 changed files with 22 additions and 4 deletions

View File

@@ -1,5 +1,10 @@
<script setup lang="ts"></script> <template>
<div class="min-h-screen flex flex-col">
<StaHeader />
<main class="grow px-6 py-10 max-w-4xl mx-auto w-full"></main>
</div>
</template>
<template></template> <script setup lang="ts">
import StaHeader from './components/StaHeader.vue';
<style scoped></style> </script>

View File

@@ -0,0 +1,13 @@
<template>
<header
class="sticky top-0 z-10 bg-background-900 border-b border-background-900 shadow-sm px-6 py-4"
>
<nav class="flex items-center justify-between max-w-4xl mx-auto">
<span class="font-heading text-lg"> STA </span>
</nav>
</header>
</template>
<script setup lang="ts"></script>
<style lang="less"></style>