fix(head): added titles for non-tool pages

This commit is contained in:
Corentin Thomasset 2022-04-19 13:19:44 +02:00
parent 005ebfba31
commit 0a15892dde
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
3 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,7 @@
<script setup lang="ts">
import { useHead } from '@vueuse/head';
useHead({title: 'Page not found - IT Tools'})
</script>
<template>

View file

@ -1,4 +1,7 @@
<script setup lang="ts">
import { useHead } from '@vueuse/head';
useHead({title: 'About - IT Tools'})
</script>
<template>

View file

@ -1,6 +1,9 @@
<script setup lang="ts">
import { toolsWithCategory } from '@/tools';
import ToolCard from '../components/ToolCard.vue';
import { useHead } from '@vueuse/head';
useHead({title: 'IT Tools'})
</script>
<template>