feat(landing): Separate /unternehmen page, replace comparison element in BenefitsWorksCouncil
This commit is contained in:
32
landing/app/pages/unternehmen.vue
Normal file
32
landing/app/pages/unternehmen.vue
Normal file
@@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<div class="benefits-company-page">
|
||||
<LandingBenefitsCompany />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const { t, locale } = useI18n()
|
||||
|
||||
// SEO Meta
|
||||
useSeoMeta({
|
||||
title: () => `${t('company.title', { highlight: t('company.titleHighlight') })} - GremiumHub`,
|
||||
description: () => t('company.description'),
|
||||
ogTitle: () => `${t('company.title', { highlight: t('company.titleHighlight') })} - GremiumHub`,
|
||||
ogDescription: () => t('company.description'),
|
||||
ogImage: '/og-image.png',
|
||||
ogType: 'website',
|
||||
twitterCard: 'summary_large_image'
|
||||
})
|
||||
|
||||
useHead({
|
||||
htmlAttrs: {
|
||||
lang: () => locale.value
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.benefits-company-page {
|
||||
padding-top: 6rem;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user