2024-07-02 15:07:22 +00:00
|
|
|
<template>
|
2024-09-22 10:53:32 +00:00
|
|
|
<v-app-bar flat color="primary">
|
2024-08-10 05:26:58 +00:00
|
|
|
<v-container fluid class="mx-auto d-flex align-center justify-center px-8">
|
2024-09-22 10:53:32 +00:00
|
|
|
<v-tooltip>
|
|
|
|
<template #activator="{ props }">
|
|
|
|
<div @click="openDrawer = !openDrawer" v-bind="props" class="cursor-pointer">
|
|
|
|
<v-img class="me-4 ms-1" width="32" height="32" alt="Logo" :src="Logo" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
Open / close drawer
|
|
|
|
</v-tooltip>
|
|
|
|
|
|
|
|
|
2024-07-02 15:07:22 +00:00
|
|
|
<nuxt-link to="/" exact>
|
2024-09-22 10:53:32 +00:00
|
|
|
<h2 class="mt-1">Solsynth LLC</h2>
|
2024-07-02 15:07:22 +00:00
|
|
|
</nuxt-link>
|
|
|
|
|
|
|
|
<v-spacer></v-spacer>
|
|
|
|
|
2024-09-25 14:29:05 +00:00
|
|
|
<locale-select />
|
2024-08-12 07:55:15 +00:00
|
|
|
<user-menu />
|
2024-07-02 15:07:22 +00:00
|
|
|
</v-container>
|
|
|
|
</v-app-bar>
|
|
|
|
|
2024-09-22 10:53:32 +00:00
|
|
|
<v-navigation-drawer v-model="openDrawer" location="left" width="300" floating>
|
|
|
|
<v-list density="compact" nav color="primary">
|
|
|
|
<v-list-item :title="t('navProducts')" prepend-icon="mdi-shape" to="/products" exact />
|
2024-09-22 12:32:23 +00:00
|
|
|
<v-list-item :title="t('navPosts')" prepend-icon="mdi-note-text" to="/posts" exact />
|
|
|
|
<v-list-item :title="t('navActivity')" prepend-icon="mdi-newspaper-variant-multiple-outline" to="/activity" exact />
|
|
|
|
<v-list-item :title="t('navGallery')" prepend-icon="mdi-image-multiple" to="/gallery" exact />
|
2024-09-22 10:53:32 +00:00
|
|
|
</v-list>
|
|
|
|
|
2024-09-22 12:15:32 +00:00
|
|
|
<v-divider class="border-opacity-50 my-1" />
|
|
|
|
|
|
|
|
<v-list density="compact" nav color="primary">
|
2024-09-28 07:10:43 +00:00
|
|
|
<v-list-item title="Knowledge Base" prepend-icon="mdi-library" to="/docs" exact />
|
2024-09-22 12:15:32 +00:00
|
|
|
<v-list-item title="Developer Portal" prepend-icon="mdi-code-tags" to="/dev" exact />
|
2024-09-25 14:29:05 +00:00
|
|
|
<v-list-item title="Creator Hub" prepend-icon="mdi-pencil" to="/creator" exact />
|
2024-09-22 12:15:32 +00:00
|
|
|
</v-list>
|
|
|
|
|
|
|
|
<v-divider class="border-opacity-50 mb-4 mt-0.5" />
|
2024-09-22 10:53:32 +00:00
|
|
|
|
2024-10-04 09:55:42 +00:00
|
|
|
<copyright no-centered :service="['roadsign', 'capital']" class="px-5" />
|
2024-09-22 10:53:32 +00:00
|
|
|
|
2024-09-22 12:15:32 +00:00
|
|
|
<footer-links class="px-5 mt-3" />
|
2024-09-22 10:53:32 +00:00
|
|
|
</v-navigation-drawer>
|
|
|
|
|
2024-07-02 15:07:22 +00:00
|
|
|
<v-main>
|
|
|
|
<slot />
|
|
|
|
</v-main>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-08-10 05:26:58 +00:00
|
|
|
import Logo from "../assets/logo-w-shadow.png"
|
2024-08-13 08:00:58 +00:00
|
|
|
|
2024-09-25 14:29:05 +00:00
|
|
|
const { t } = useI18n()
|
2024-09-22 10:53:32 +00:00
|
|
|
|
|
|
|
const openDrawer = ref(false)
|
2024-07-02 15:07:22 +00:00
|
|
|
</script>
|