TOPVERSE_Official/components/header/header.vue

19 lines
535 B
Vue
Raw Normal View History

2023-04-23 23:14:52 +08:00
<template>
2023-04-27 13:58:47 +08:00
<header class="bg-header/10 min-h-[100px]" z-100 w-full flex flex-col items-start justify-start px-5 md="items-center flex-row justify-around px-15 absolute">
2023-04-23 23:14:52 +08:00
<NuxtLink to="/" class="w-35 flex items-center gap-5">
<BrandLogo />
</NuxtLink>
<nav h-full flex items-center>
<HeaderNav />
</nav>
2023-04-27 13:58:47 +08:00
<!-- <div w-20 flex justify-center> -->
<!-- <ABtn variant="text">
2023-04-23 23:14:52 +08:00
login
</ABtn>
<ABtn shadow-lg>
login
2023-04-27 13:58:47 +08:00
</ABtn> -->
<!-- </div> -->
2023-04-23 23:14:52 +08:00
</header>
</template>