| 12345678910111213141516171819202122232425262728293031323334353637 |
- import type { Metadata } from "next";
- import { PageHero } from "@/components/marketing/page-hero";
- import { PlaceholderNotice } from "@/components/marketing/placeholder-notice";
- export const metadata: Metadata = {
- title: "Trust",
- description:
- "krypco trust center — security posture and transparency placeholders.",
- };
- export default function TrustPage() {
- return (
- <>
- <PageHero
- eyebrow="Legal"
- title="Trust"
- description="Security posture, compliance notes, and how we earn confidence over time."
- />
- <section className="section-pad">
- <div className="mx-auto max-w-2xl space-y-6 px-5 lg:px-8">
- <PlaceholderNotice>
- Trust-center content (audits, reports, status) will live here.
- Structural placeholder only for now.
- </PlaceholderNotice>
- <p className="text-sm leading-relaxed text-muted-foreground">
- For architectural intent, see{" "}
- <a href="/security" className="text-accent-hover hover:underline">
- Security
- </a>
- . Formal attestations publish when they exist — not before.
- </p>
- </div>
- </section>
- </>
- );
- }
|