Files
api/web/pages/welcome.vue
Eli Bosley 6c042cbe01 fix: stepper fixes (#1240)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Refactor**
- Streamlined the activation steps display with improved conditional
rendering and enhanced interactive button styling.
- **New Features**
- Introduced a new welcome page featuring a dummy server switcher and
refreshed welcome modal.
- Expanded the activation interface with a new activation code section
for clearer navigation.
- **Chores**
  - Removed the welcome modal from the home page to simplify the layout.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Zack Spear <hi@zackspear.com>
2025-03-18 16:21:40 -04:00

15 lines
419 B
Vue

<script setup lang="ts">
import { useDummyServerStore } from '~/_data/serverState';
import DummyServerSwitcher from '~/components/DummyServerSwitcher.vue';
const serverStore = useDummyServerStore();
const { serverState } = storeToRefs(serverStore);
</script>
<template>
<div class="flex flex-col gap-6 p-6">
<DummyServerSwitcher />
<WelcomeModalCe :server="serverState ?? undefined" />
</div>
</template>