import type { Metadata } from "next"; import Link from "next/link"; import { HybridJourney } from "@/components/marketing/hybrid-journey"; import { PageHero } from "@/components/marketing/page-hero"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; export const metadata: Metadata = { title: "How it works", description: "How krypco combines a private permissioned layer with public-chain anchoring.", }; export default function HowItWorksMarketingPage() { return ( <>

Why hybrid

Pure public chains expose too much. Pure private ledgers ask you to trust without a public check. krypco keeps speed and access control on the private side, and posts anchors so outsiders can still verify that commitments match.

See it in the portal

The portal is built so you can follow a transaction from private block through public anchor — not just read a diagram.

Open the explorer
); }