whois.tinysites.com/components/Header.vue

16 lines
415 B
Vue
Raw Permalink Normal View History

2024-08-12 05:03:55 +00:00
<script setup>
const host = hostname()
</script>
<template>
<header>
<div class="head">
2024-08-12 05:37:56 +00:00
<NuxtLink class="logo" :to="host" target="_BLANK">
2024-08-12 05:03:55 +00:00
<img src="/img/logo.svg" alt="tinysites" />
</NuxtLink>
<ul class="cta">
<li class="secondary"><NuxtLink :to="host + 'dashboard/domains'" target="_BLANK">Manage domains</NuxtLink></li>
</ul>
</div>
</header>
</template>