2022-09-01 14:32:03 -08:00
|
|
|
<template>
|
|
|
|
<NuxtLayout>
|
2022-12-29 17:19:15 -08:00
|
|
|
<Html lang="en" :data-theme="theme || 'homebox'" />
|
2023-02-12 15:14:11 -09:00
|
|
|
<Link rel="icon" type="image/svg" href="/favicon.svg"></Link>
|
2023-03-23 10:27:12 -08:00
|
|
|
<Link rel="apple-touch-icon" href="/apple-touch-icon.png" size="180x180" />
|
|
|
|
<Link rel="mask-icon" href="/mask-icon.svg" color="#5b7f67" />
|
|
|
|
<Meta name="theme-color" content="#5b7f67" />
|
|
|
|
<Link rel="manifest" href="/manifest.webmanifest" />
|
2022-09-01 14:32:03 -08:00
|
|
|
<NuxtPage />
|
|
|
|
</NuxtLayout>
|
|
|
|
</template>
|
2022-10-06 18:54:09 -08:00
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
const { theme } = useTheme();
|
|
|
|
</script>
|