2024-10-30 15:02:47 +01:00
|
|
|
<template>
|
|
|
|
<NuxtPage />
|
|
|
|
</template>
|
2024-11-06 08:59:07 +01:00
|
|
|
|
2025-01-05 18:31:55 +01:00
|
|
|
<script setup lang="ts">
|
2025-05-10 17:37:58 +02:00
|
|
|
const { seo, title } = useGlobal();
|
2025-01-05 18:31:55 +01:00
|
|
|
|
2024-11-06 08:59:07 +01:00
|
|
|
useHead({
|
2025-05-10 17:37:58 +02:00
|
|
|
title: title.value,
|
2025-01-05 18:31:55 +01:00
|
|
|
meta: [
|
2025-05-10 17:37:58 +02:00
|
|
|
{ name: "description", content: seo.value?.metaDescription },
|
|
|
|
{ name: "keywords", content: seo.value?.keywords ?? "" },
|
2025-02-14 13:57:55 +01:00
|
|
|
],
|
2024-11-06 08:59:07 +01:00
|
|
|
});
|
|
|
|
</script>
|