b957f5aa83
* Update workspace header. Style login button in menu * Fix misalignment in tabs * Remove NuxtImg. Move file * Update yarn.lock * Move image to assets
19 lines
392 B
Vue
19 lines
392 B
Vue
<template>
|
|
<div>
|
|
<Portal to="navigation">
|
|
<HeaderNavLink :to="workspacesRoute" name="Workspaces" :separator="false" />
|
|
</Portal>
|
|
<WorkspacesPromoPage />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { workspacesRoute } from '~/lib/common/helpers/route'
|
|
|
|
definePageMeta({
|
|
middleware: ['requires-workspaces-enabled']
|
|
})
|
|
useHead({
|
|
title: 'Workspaces'
|
|
})
|
|
</script>
|