TOPVERSE_Official/components/header/header.vue

20 lines
585 B
Vue
Raw Normal View History

2023-04-23 23:14:52 +08:00
<template>
2023-06-13 20:06:26 +08:00
<header class="bg-header/10 h-100px w-full flex justify-between px-5 md:px-30 sm:px-20 xl:px-60" lg="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-13 20:06:26 +08:00
<div class="h-100px flex flex-grow items-center justify-end">
2023-04-23 23:14:52 +08:00
<HeaderNav />
2023-06-13 20:06:26 +08:00
<HeaderMobileNav />
</div>
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>