New logo, starting account handling

This commit is contained in:
2024-07-28 23:26:19 +02:00
parent b2891187c6
commit 3b23d4dab4
16 changed files with 148 additions and 43 deletions

View File

@@ -1,11 +1,6 @@
<script setup lang="ts">
interface NavItem {
title: string
_path: string
_id?: string
_draft?: boolean
children?: NavItem[]
}
import type { NavItem } from '@nuxt/content';
interface Props {
link: NavItem;
}