2022-09-01 22:32:03 +00:00
|
|
|
<template>
|
|
|
|
<NuxtLayout>
|
2022-12-30 01:19:15 +00:00
|
|
|
<Html lang="en" :data-theme="theme || 'homebox'" />
|
2023-02-13 00:14:11 +00:00
|
|
|
<Link rel="icon" type="image/svg" href="/favicon.svg"></Link>
|
2023-03-23 18:27:12 +00: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 22:32:03 +00:00
|
|
|
<NuxtPage />
|
|
|
|
</NuxtLayout>
|
|
|
|
</template>
|
2022-10-07 02:54:09 +00:00
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
const { theme } = useTheme();
|
|
|
|
</script>
|