Some checks failed
Build Docker Image / build (push) Has been cancelled
- Add layout: 'topnav' to all 27 pages that were using default layout - Delete app/layouts/default.vue 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
392 B
Vue
21 lines
392 B
Vue
<template>
|
|
<Section variant="plain" paddingY="md">
|
|
<Stack align="center" justify="center" gap="4" fullHeight>
|
|
<Spinner />
|
|
<Text tone="muted">Redirecting...</Text>
|
|
</Stack>
|
|
</Section>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'topnav'
|
|
})
|
|
|
|
const localePath = useLocalePath()
|
|
|
|
onMounted(() => {
|
|
navigateTo(localePath('/clientarea'))
|
|
})
|
|
</script>
|