feat(landing): Separate /unternehmen page, replace comparison element in BenefitsWorksCouncil

This commit is contained in:
2026-01-10 19:21:53 +01:00
parent 1393de11f9
commit cbb02348c9
7 changed files with 120 additions and 97 deletions

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