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: "Privacy",
  6. description: "krypco privacy policy — placeholder until legal copy is finalized.",
  7. };
  8. export default function PrivacyPage() {
  9. return (
  10. <>
  11. <PageHero
  12. eyebrow="Legal"
  13. title="Privacy"
  14. description="How we handle personal data when you use krypco sites and services."
  15. />
  16. <section className="section-pad">
  17. <div className="mx-auto max-w-2xl space-y-6 px-5 lg:px-8">
  18. <PlaceholderNotice>
  19. Full privacy policy text will be published here. This page is a
  20. structural placeholder only.
  21. </PlaceholderNotice>
  22. <p className="text-sm leading-relaxed text-muted-foreground">
  23. Until then: do not submit sensitive personal data through contact
  24. forms beyond what you are comfortable sharing. Contact us if you
  25. have privacy questions.
  26. </p>
  27. </div>
  28. </section>
  29. </>
  30. );
  31. }