mirror of
https://github.com/SrIzan10/helium.git
synced 2026-06-06 00:56:58 +00:00
20 lines
412 B
Vue
20 lines
412 B
Vue
<script setup lang="ts">
|
|
import SignInDialog from '~/components/app/SignInDialog.vue';
|
|
import ThemeDropdown from '~/components/ui/ThemeDropdown.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<header class="flex justify-end p-4">
|
|
<SignedOut>
|
|
<SignInDialog />
|
|
</SignedOut>
|
|
<SignedIn>
|
|
<UserButton />
|
|
</SignedIn>
|
|
</header>
|
|
<ThemeDropdown />
|
|
<slot />
|
|
</div>
|
|
</template>
|