import type { Metadata } from "next"; import Link from "next/link"; import { PageHero } from "@/components/marketing/page-hero"; import { PlaceholderNotice } from "@/components/marketing/placeholder-notice"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; export const metadata: Metadata = { title: "Pricing", description: "krypco pricing โ€” structure preview; final numbers coming later.", }; const TIERS = [ { name: "Explorer", price: "Free", note: "Preview", items: ["Public portal access", "Read explorer data", "Docs & architecture"], }, { name: "Builder", price: "TBD", note: "Coming soon", items: ["API / SDK access", "Higher rate limits", "Support channel"], }, { name: "Enterprise", price: "Custom", note: "Talk to us", items: ["Permissioned membership", "SLA & onboarding", "Dedicated path"], }, ] as const; export default function PricingPage() { return ( <>
Preview only โ€” not live commercial offers. Contact us for early access conversations.
{TIERS.map((tier) => (

{tier.note}

{tier.name}

{tier.price}

    {tier.items.map((item) => (
  • ยท {item}
  • ))}
))}
Ask about access
); }