wraith/frontend/app.vue
Vantz Stockwell b774541a13 feat: Phase 4 — settings, theming, polish
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-12 17:33:12 -04:00

13 lines
228 B
Vue

<script setup lang="ts">
// Apply dark theme by default on initial load; settings page can toggle it
useHead({
htmlAttrs: { class: 'dark' },
})
</script>
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>