Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 7m11s
28 lines
661 B
Vue
28 lines
661 B
Vue
<script setup>
|
|
useHead({
|
|
meta: [{ name: 'viewport', content: 'width=device-width, initial-scale=1' }],
|
|
link: [{ rel: 'icon', href: '/favicon.ico' }],
|
|
htmlAttrs: {
|
|
lang: 'en',
|
|
},
|
|
});
|
|
|
|
const title = 'Tímmál - Privacy-First Time Tracking';
|
|
const description =
|
|
'Track time spent on tickets, generate Excel-compatible reports, and streamline your work report workflow. Built for developers and consultants who value privacy and accuracy.';
|
|
|
|
useSeoMeta({
|
|
title,
|
|
description,
|
|
ogTitle: title,
|
|
ogDescription: description,
|
|
twitterCard: 'summary_large_image',
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|