TOPVERSE_Official/components/header/header.vue

19 lines
577 B
Vue
Raw Normal View History

2023-04-23 23:14:52 +08:00
<template>
2023-05-05 17:23:07 +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 z-100 top-0">
2023-06-09 02:04:28 +08:00
<LocaleNuxtLink href="/" class="w-35 flex flex-shrink-0 items-center gap-5">
2023-04-23 23:14:52 +08:00
<BrandLogo />
2023-06-01 15:36:34 +08:00
</LocaleNuxtLink>
2023-06-09 02:04:28 +08:00
<nav h-full flex-grow items-end>
2023-04-23 23:14:52 +08:00
<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>