Files
webapp/app/pages/callback.vue
Ruslan Bakiev ee7b8d0ee4
Some checks failed
Build Docker Image / build (push) Has been cancelled
Remove default layout, migrate all pages to topnav
- 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>
2026-01-08 09:44:26 +07:00

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>