import type { Metadata } from "next"; import Link from "next/link"; import { PageHero } from "@/components/marketing/page-hero"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; export const metadata: Metadata = { title: "For business", description: "krypco for partners and operators who need confidential execution with public verifiability.", }; const POINTS = [ { title: "Confidential by default", body: "Permissioned execution keeps sensitive commercial data off the open mempool while still producing checkable proofs.", }, { title: "Proof you can show", body: "Public anchors give auditors, partners, and counterparties a way to verify commitments without a private-chain invite.", }, { title: "A portal, not a black box", body: "Follow status through the hybrid path so operations teams can see pending, confirmed, and anchored states clearly.", }, ] as const; export default function BusinessPage() { return ( <>
Get in touch Security model
{POINTS.map((p) => (

{p.title}

{p.body}

))}
); }