You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
469 B
17 lines
469 B
<template>
|
|
<header class="header">
|
|
<nav>
|
|
<NuxtLink v-for="item in navigationItems" :key="item.path" :to="item.path" class="nav-link">
|
|
{{ item.name }}
|
|
</NuxtLink>
|
|
</nav>
|
|
<div class="theme-toggle-container">
|
|
<ThemeToggle :is-dark="$theme.isDark" :toggle-theme="$theme.toggleTheme" />
|
|
</div>
|
|
</header>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { navigationItems } from '~/config/navigation'
|
|
const { $theme } = useNuxtApp();
|
|
</script> |