page.tsx 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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: "Terms",
  6. description: "krypco terms of use — placeholder until legal copy is finalized.",
  7. };
  8. export default function TermsPage() {
  9. return (
  10. <>
  11. <PageHero
  12. eyebrow="Legal"
  13. title="Terms of use"
  14. description="The rules for using krypco websites, portal, and related 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 terms will be published here. This page is a structural
  20. placeholder only.
  21. </PlaceholderNotice>
  22. <p className="text-sm leading-relaxed text-muted-foreground">
  23. The product is in preview. Do not rely on it for production or
  24. regulated workloads until terms and network status say otherwise.
  25. </p>
  26. </div>
  27. </section>
  28. </>
  29. );
  30. }