Some checks failed
Main Confidence / confidence (push) Failing after 43s
## Summary - implement the website-only core IA for Spec 215 with canonical Home, Product, Trust, Changelog, Contact, Privacy, and Imprint routes - reduce primary navigation to the core buyer journey, retain legal/supporting pages as secondary surfaces, and redirect `/security-trust` to `/trust` - add route metadata, sitemap/canonical handling, changelog publishing, and updated smoke coverage for the new IA contract ## Testing - `corepack pnpm build:website` - `cd apps/website && corepack pnpm exec playwright test` - integrated browser smoke validation for core routes, secondary routes, `/security-trust -> /trust`, hidden optional routes, mobile nav, and Trust/Changelog to Contact paths ## Notes - keeps all changes local to `apps/website` and the Spec 215 artifacts - preserves the website working contract with no `apps/platform` runtime coupling Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #252
87 lines
3.3 KiB
TypeScript
87 lines
3.3 KiB
TypeScript
import type {
|
|
FeatureItemContent,
|
|
HeroContent,
|
|
IntegrationEntry,
|
|
PageSeo,
|
|
} from '@/types/site';
|
|
|
|
export const integrationsSeo: PageSeo = {
|
|
title: 'TenantAtlas | Integrations',
|
|
description:
|
|
'TenantAtlas keeps ecosystem-fit detail available as a supporting page without pretending integrations belong in the primary navigation.',
|
|
path: '/integrations',
|
|
};
|
|
|
|
export const integrationsHero: HeroContent = {
|
|
eyebrow: 'Retained supporting page',
|
|
title: 'Keep ecosystem fit detail visible without pretending it is the first thing every buyer needs.',
|
|
description:
|
|
'This page shows the real systems TenantAtlas is built around, the workflows it expects to support, and the deliberate boundaries where speculative integration language would create more noise than trust.',
|
|
primaryCta: {
|
|
href: '/contact',
|
|
label: 'Plan the working session',
|
|
},
|
|
secondaryCta: {
|
|
href: '/product',
|
|
label: 'See the product model',
|
|
variant: 'secondary',
|
|
},
|
|
highlights: [
|
|
'Microsoft-first and governance-led.',
|
|
'Real direction only, no catalog-padding.',
|
|
'Explains fit without implying runtime coupling to the public site.',
|
|
],
|
|
};
|
|
|
|
export const integrationEntries: IntegrationEntry[] = [
|
|
{
|
|
category: 'Microsoft core',
|
|
name: 'Microsoft Graph',
|
|
summary:
|
|
'Graph remains the primary contract path for inventory, history, and restore-oriented product behavior in the platform.',
|
|
note: 'Core product contract',
|
|
},
|
|
{
|
|
category: 'Identity',
|
|
name: 'Entra ID',
|
|
summary:
|
|
'Identity context matters where tenant change, privileged access, or governance reviews intersect with Microsoft tenant administration.',
|
|
note: 'Operational context',
|
|
},
|
|
{
|
|
category: 'Endpoint',
|
|
name: 'Intune',
|
|
summary:
|
|
'Intune configuration state is central to the current product story, especially for version history, backup, restore, and drift visibility.',
|
|
note: 'Current release truth',
|
|
},
|
|
{
|
|
category: 'Evidence',
|
|
name: 'Review & evidence workflows',
|
|
summary:
|
|
'Exports, review packs, and evidence-linked conversations should remain grounded in the actual tenant object and its change history.',
|
|
note: 'Governance workflow fit',
|
|
},
|
|
];
|
|
|
|
export const integrationRules: FeatureItemContent[] = [
|
|
{
|
|
eyebrow: 'Direction',
|
|
title: 'Integrations should reinforce the governance model.',
|
|
description:
|
|
'The page is not a marketplace list. It should show which systems matter because they change the product workflow, evidence story, or operator context.',
|
|
},
|
|
{
|
|
eyebrow: 'Boundaries',
|
|
title: 'Do not imply shared public-site runtime dependencies.',
|
|
description:
|
|
'The website stays static and independent even while the product story references Graph, Intune, and Microsoft tenant governance flows.',
|
|
},
|
|
{
|
|
eyebrow: 'Credibility',
|
|
title: 'Speculative wishlist entries reduce trust instead of creating momentum.',
|
|
description:
|
|
'The public integrations page should stay shorter and sharper than a catalog full of future ideas that are not relevant to launch truth.',
|
|
},
|
|
];
|