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
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>