add user profiles and theme selectors

This commit is contained in:
Hayden 2022-10-01 12:13:53 -08:00
parent 1ca430af21
commit 72324b8439
14 changed files with 466 additions and 186 deletions

View file

@ -1,6 +1,10 @@
<template>
<NuxtLayout>
<Html lang="en" data-theme="garden" />
<Html lang="en" :data-theme="theme" />
<NuxtPage />
</NuxtLayout>
</template>
<script lang="ts" setup>
const { theme } = useTheme();
</script>