mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
812 B
44 lines
812 B
<template>
|
|
<NuxtLayout>
|
|
<NuxtLayout name="header" />
|
|
<NuxtPage />
|
|
<NuxtLayout name="footer" />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const globalStore = useGlobalStore();
|
|
globalStore.fetchFeatures();
|
|
globalStore.fetchRelease();
|
|
useHead({
|
|
bodyAttrs: {
|
|
class: 'bg-gray-50 dark:bg-neutral-800',
|
|
},
|
|
link: [
|
|
{
|
|
rel: 'manifest',
|
|
href: '/manifest.json',
|
|
},
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/png',
|
|
href: '/favicon.png',
|
|
},
|
|
{
|
|
rel: 'apple-touch-icon',
|
|
href: '/apple-touch-icon.png',
|
|
},
|
|
],
|
|
meta: [
|
|
{
|
|
name: 'apple-mobile-web-app-capable',
|
|
content: 'yes',
|
|
},
|
|
{
|
|
name: 'apple-mobile-web-app-status-bar-style',
|
|
content: 'black-translucent',
|
|
},
|
|
],
|
|
title: 'WireGuard',
|
|
});
|
|
</script>
|
|
|