Workspace / template / template
Security Editorial Template
paxfx add blocks/template-security-editoriallocal onlyTier: low. Reduced motion: Fully static presentation.
"use client";
import { NavigationMinimal } from "../../navigation/NavigationMinimal.js";
import { HeroMinimal } from "../../hero/HeroMinimal.js";
import { AboutValues } from "../../about/AboutValues.js";
import { ComparisonTable } from "../../comparison/ComparisonTable.js";
import { SocialProofEditorial } from "../../social-proof/SocialProofEditorial.js";
import { ContactSplit } from "../../contact/ContactSplit.js";
import { FooterColumns } from "../../footer/FooterColumns.js";
/**
* Security editorial template: persuasion by restraint. States what the
* product refuses to do, compares honestly, cites the press, and ends
* with a way to reach real people.
*/
export default function SecurityEditorialPage() {
return (
<main data-pax-asset="template-security-editorial">
<NavigationMinimal />
<HeroMinimal
copy={{
title: "Security software that shows its work.",
description:
"Ledgerline signs every build, publishes every audit, and encrypts everything it stores. The marketing site is this page.",
primaryCta: { label: "Read the latest audit", href: "#audits" },
}}
/>
<AboutValues />
<ComparisonTable />
<SocialProofEditorial />
<ContactSplit />
<FooterColumns />
</main>
);
}