46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import ogImageSrc from '@images/social.png';
|
|
|
|
export const SITE = {
|
|
title: 'Tenantial',
|
|
tagline: 'Microsoft 365 Policies unter Kontrolle bringen',
|
|
description:
|
|
'Tenantial hilft MSPs und Enterprise-IT-Teams, Policy-Drift früh zu erkennen, Konfigurationen versioniert zu sichern und auditfähige Evidence für Reviews, Changes und Recovery bereitzustellen.',
|
|
description_short:
|
|
'Microsoft 365 Governance mit Policy-Drift, versionierten Backups, Evidence, Reviews und kontrollierter Recovery-Vorbereitung.',
|
|
url: 'https://tenantial.com',
|
|
author: 'Tenantial',
|
|
};
|
|
|
|
export const SEO = {
|
|
title: SITE.title,
|
|
description: SITE.description,
|
|
structuredData: {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'WebPage',
|
|
inLanguage: 'de',
|
|
'@id': SITE.url,
|
|
url: SITE.url,
|
|
name: SITE.title,
|
|
description: SITE.description,
|
|
isPartOf: {
|
|
'@type': 'WebSite',
|
|
url: SITE.url,
|
|
name: SITE.title,
|
|
description: SITE.description,
|
|
},
|
|
},
|
|
};
|
|
|
|
export const OG = {
|
|
locale: 'de_DE',
|
|
type: 'website',
|
|
url: SITE.url,
|
|
title: `${SITE.title}: Microsoft 365 Policies unter Kontrolle bringen`,
|
|
description:
|
|
'Policy-Drift früh erkennen, Konfigurationsstände versioniert sichern und auditfähige Evidence für Reviews, Changes und kontrollierte Recovery vorbereiten.',
|
|
image: ogImageSrc,
|
|
};
|
|
|
|
export const partnersData: Array<{ icon: string; name: string; href: string }> =
|
|
[];
|