| 12345678910111213141516171819202122232425262728293031323334 |
- import type { Metadata } from "next";
- import { PageHero } from "@/components/marketing/page-hero";
- import { PlaceholderNotice } from "@/components/marketing/placeholder-notice";
- export const metadata: Metadata = {
- title: "Privacy",
- description: "krypco privacy policy — placeholder until legal copy is finalized.",
- };
- export default function PrivacyPage() {
- return (
- <>
- <PageHero
- eyebrow="Legal"
- title="Privacy"
- description="How we handle personal data when you use krypco sites and services."
- />
- <section className="section-pad">
- <div className="mx-auto max-w-2xl space-y-6 px-5 lg:px-8">
- <PlaceholderNotice>
- Full privacy policy text will be published here. This page is a
- structural placeholder only.
- </PlaceholderNotice>
- <p className="text-sm leading-relaxed text-muted-foreground">
- Until then: do not submit sensitive personal data through contact
- forms beyond what you are comfortable sharing. Contact us if you
- have privacy questions.
- </p>
- </div>
- </section>
- </>
- );
- }
|