page.tsx 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import type { Metadata } from "next";
  2. import { PageHero } from "@/components/marketing/page-hero";
  3. import { PlaceholderNotice } from "@/components/marketing/placeholder-notice";
  4. export const metadata: Metadata = {
  5. title: "Trust",
  6. description:
  7. "krypco trust center — security posture and transparency placeholders.",
  8. };
  9. export default function TrustPage() {
  10. return (
  11. <>
  12. <PageHero
  13. eyebrow="Legal"
  14. title="Trust"
  15. description="Security posture, compliance notes, and how we earn confidence over time."
  16. />
  17. <section className="section-pad">
  18. <div className="mx-auto max-w-2xl space-y-6 px-5 lg:px-8">
  19. <PlaceholderNotice>
  20. Trust-center content (audits, reports, status) will live here.
  21. Structural placeholder only for now.
  22. </PlaceholderNotice>
  23. <p className="text-sm leading-relaxed text-muted-foreground">
  24. For architectural intent, see{" "}
  25. <a href="/security" className="text-accent-hover hover:underline">
  26. Security
  27. </a>
  28. . Formal attestations publish when they exist — not before.
  29. </p>
  30. </div>
  31. </section>
  32. </>
  33. );
  34. }