Some checks failed
Main Confidence / confidence (push) Failing after 50s
Automated commit by agent: commits workspace changes for feature 217-homepage-hero. Please review and merge into `dev`. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #259
64 lines
2.8 KiB
Plaintext
64 lines
2.8 KiB
Plaintext
---
|
|
import Callout from '@/components/content/Callout.astro';
|
|
import PageShell from '@/components/layout/PageShell.astro';
|
|
import Container from '@/components/primitives/Container.astro';
|
|
import Grid from '@/components/primitives/Grid.astro';
|
|
import Section from '@/components/primitives/Section.astro';
|
|
import SectionHeader from '@/components/primitives/SectionHeader.astro';
|
|
import CTASection from '@/components/sections/CTASection.astro';
|
|
import FeatureGrid from '@/components/sections/FeatureGrid.astro';
|
|
import PageHero from '@/components/sections/PageHero.astro';
|
|
import {
|
|
productHero,
|
|
productMetrics,
|
|
productModelBlocks,
|
|
productNarrative,
|
|
productSeo,
|
|
} from '@/content/pages/product';
|
|
---
|
|
|
|
<PageShell currentPath="/product" title={productSeo.title} description={productSeo.description}>
|
|
<PageHero
|
|
hero={productHero}
|
|
metrics={productMetrics}
|
|
calloutTitle="Connected governance model"
|
|
calloutDescription="TenantAtlas connects present-state inventory, immutable snapshots, restore posture, drift, exceptions, and evidence so teams can explain what happened before they decide what to do next."
|
|
/>
|
|
|
|
<FeatureGrid
|
|
eyebrow="Connected governance model"
|
|
title="Explain what the product does before asking for buyer trust."
|
|
titleHtml='Explain what the product does before asking for <span class="accent">buyer trust</span>.'
|
|
description="This page should explain how the pieces fit together so visitors do not mistake the product for a loose collection of backup, reporting, and restore features."
|
|
items={productModelBlocks}
|
|
tone="tinted"
|
|
/>
|
|
|
|
<Section tone="muted" density="base" layer="3">
|
|
<Container width="wide">
|
|
<div class="space-y-8">
|
|
<SectionHeader
|
|
eyebrow="Narrative"
|
|
title="Keep the path from product truth into trust and action readable."
|
|
description="The public product page should make it obvious how the product helps a team move from current-state understanding into trust review, visible progress, and reviewable action."
|
|
/>
|
|
<Grid cols="3">
|
|
{productNarrative.map((block) => <Callout content={block} />)}
|
|
</Grid>
|
|
</div>
|
|
</Container>
|
|
</Section>
|
|
|
|
<CTASection
|
|
eyebrow="Continue"
|
|
title="Trust review and visible progress should follow the product explanation cleanly."
|
|
description="Once the product model is clear, the next useful moves are to inspect the Trust surface, verify current progress, and start the contact path."
|
|
primary={{ href: '/changelog', label: 'Read the changelog' }}
|
|
secondary={{
|
|
href: '/contact',
|
|
label: 'Start the working session',
|
|
variant: 'secondary',
|
|
}}
|
|
/>
|
|
</PageShell>
|