| 123456789101112131415161718192021222324252627282930313233 |
- import type { Metadata } from "next";
- import { PageHero } from "@/components/marketing/page-hero";
- import { PlaceholderNotice } from "@/components/marketing/placeholder-notice";
- export const metadata: Metadata = {
- title: "Terms",
- description: "krypco terms of use — placeholder until legal copy is finalized.",
- };
- export default function TermsPage() {
- return (
- <>
- <PageHero
- eyebrow="Legal"
- title="Terms of use"
- description="The rules for using krypco websites, portal, and related services."
- />
- <section className="section-pad">
- <div className="mx-auto max-w-2xl space-y-6 px-5 lg:px-8">
- <PlaceholderNotice>
- Full terms will be published here. This page is a structural
- placeholder only.
- </PlaceholderNotice>
- <p className="text-sm leading-relaxed text-muted-foreground">
- The product is in preview. Do not rely on it for production or
- regulated workloads until terms and network status say otherwise.
- </p>
- </div>
- </section>
- </>
- );
- }
|