mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
<!-- 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>
15 lines
419 B
Vue
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>
|