Implement maintenance

This commit is contained in:
2023-09-04 17:31:43 +02:00
parent 8449d145d8
commit eedd94ba0f
7 changed files with 31 additions and 22 deletions

View File

@@ -2,14 +2,14 @@
<header class="z-30 sticky top-0 left-0 flex justify-center w-full">
<div class="w-full px-4 sm:px-6 lg:px-8 sm:mx-8 max-w-7xl py-4 flex justify-between bg-white dark:bg-zinc-900 border-b border-zinc-100 dark:border-zinc-300/10">
<Logo />
<NavBar v-if="navbar" />
<NavBar v-if="navigation" />
<div class="flex gap-2">
<ClientOnly>
<div class="flex items-center rounded-md p-1 gap-1 relative bg-black/5 text-sm font-medium text-zinc-700 dark:bg-zinc-800/90 dark:text-zinc-300">
<ColorPicker />
<ColorModeButton />
</div>
<MobileNavBar />
<MobileNavBar v-if="navigation" />
</ClientOnly>
</div>
</div>
@@ -19,7 +19,7 @@
<script setup lang="ts">
defineProps({
navbar: {
navigation: {
type: Boolean,
default: true,
},