diff --git a/web/pages/configurator.vue b/web/pages/configurator.vue index 3142f22..8d86e37 100644 --- a/web/pages/configurator.vue +++ b/web/pages/configurator.vue @@ -160,11 +160,21 @@ import { resetVcfConfiguration } from "~/composables/vcfConfiguration"; import LocalStorageButton from "~/components/LocalStorageButton.vue"; import { compareVersions } from "compare-versions"; +const url = useRequestURL(); +const config = useRuntimeConfig(); + useHead({ title: "MISS-ELS VCF Configurator", }); -const config = useRuntimeConfig(); +useSeoMeta({ + ogSiteName: "MISS-ELS", + title: "MISS-ELS VCF Configurator", + ogTitle: "MISS-ELS VCF Configurator", + ogDescription: + "Using our VCF Configurator, you can easily generate configuration files for your vehicles.", + ogImage: `${url.origin}/images/MISS-ELS.png`, +}); const isVcfSchemaVersionUpToDate = computed(() => { return ( diff --git a/web/pages/index.vue b/web/pages/index.vue index a456472..774ebbd 100644 --- a/web/pages/index.vue +++ b/web/pages/index.vue @@ -25,6 +25,17 @@