feat: optimize header and footer

This commit is contained in:
2026-02-26 22:23:54 +08:00
parent ca5c3c8d21
commit af270b3d6a
15 changed files with 126 additions and 76 deletions

20
src/pages/join.vue Normal file
View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
import NavBar from "@/components/menu/NavBar.vue";
import FooterBarV2 from "@/components/layout/FooterBarV2.vue";
</script>
<template>
<div class="lg:pb-102 md:pb-122 pb-154">
<!-- 这里开 relative 形成 stack context -->
<div class="bg-base-200 relative z-2">
<div class="h-screen flex flex-col">
<NavBar class="fixed top-0 left-0 z-10" />
<!-- 同高度占位颜色叠加 -->
<div class="h-16 bg-base-300" />
</div>
</div>
<FooterBarV2 />
</div>
</template>
<style scoped></style>