whois.tinysites.com/error.vue

34 lines
928 B
Vue
Raw Normal View History

2024-08-15 12:08:47 +00:00
<script setup>
2024-08-12 05:03:55 +00:00
useHead({
htmlAttrs: [
{ lang: 'en'}
],
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{ rel: 'icon', sizes: '32x32', href: '/favicon-32x32.png' },
{ rel: 'icon', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'manifest', href: '/site.webmanifest' },
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#14c670' },
],
meta: [
{ name: 'msapplication-TileColor', content: '#042816' },
{ name: 'theme-color', content: '#ffffff' }
],
script: [
2024-08-15 12:08:47 +00:00
{ defer: 'true', 'data-domain': 'whois.tinysites.com', src: 'https://pa.tinysites.com/js/latest.js' }
2024-08-12 05:03:55 +00:00
]
})
</script>
<template>
<Header></Header>
<main>
<div class="error">
<h1>404</h1>
<h2>Page not found</h2>
<NuxtLink to="/">Homepage</NuxtLink>
</div>
</main>
<Footer></Footer>
</template>