page.tsx 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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: "Subprocessors",
  6. description:
  7. "krypco subprocessors list — placeholder until the formal list is published.",
  8. };
  9. export default function SubprocessorsPage() {
  10. return (
  11. <>
  12. <PageHero
  13. eyebrow="Legal"
  14. title="Subprocessors"
  15. description="Third parties that may process data on behalf of krypco services."
  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. The formal subprocessor list will be published here. This page is a
  21. structural placeholder only.
  22. </PlaceholderNotice>
  23. <p className="text-sm leading-relaxed text-muted-foreground">
  24. When live, expect names, roles, and regions for each subprocessor —
  25. updated as vendors change.
  26. </p>
  27. </div>
  28. </section>
  29. </>
  30. );
  31. }