This commit is contained in:
Thien Pham Van
2026-03-17 14:08:57 +07:00
parent c9940afc82
commit cf144ea896
34 changed files with 10875 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<template>
<header class="header">
<div class="container">
<HeaderLogo />
<HeaderMenu />
</div>
</header>
</template>
<script setup>
import HeaderLogo from './HeaderLogo.vue';
import HeaderMenu from './HeaderMenu.vue';
</script>
<style lang="scss">
.header {
box-shadow: 4px 4px 4px 0px #00000040;
.container {
height: 60px;
display: flex;
align-items: center;
gap: 10px;
}
}
</style>