mirror of
https://github.com/Paris-est-Ludique/ForceOrange.git
synced 2025-06-08 01:04:20 +02:00
18 lines
240 B
Vue
18 lines
240 B
Vue
<script setup lang="ts">
|
|
useHead({
|
|
bodyAttrs: {
|
|
class: 'bg-orange-200 dark:bg-orange-900 dark:bg-opacity-30'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<FOHeader />
|
|
|
|
<UMain class="m-4">
|
|
<slot />
|
|
</UMain>
|
|
|
|
<UNotifications />
|
|
</template>
|