import type { Metadata } from "next";
import Link from "next/link";
import { ArrowRightIcon } from "@/components/icons/arrow-right";
import { PageHero } from "@/components/marketing/page-hero";
import { buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
export const metadata: Metadata = {
title: "For developers",
description:
"Build on krypco — docs, architecture, and a portal to follow hybrid transactions.",
};
const LINKS = [
{
href: "/portal/docs",
title: "Docs",
body: "SDK and API stubs as the surface solidifies.",
},
{
href: "/portal/architecture",
title: "Architecture",
body: "Layers, relayer, and how anchors relate to private blocks.",
},
{
href: "/portal/explorer",
title: "Explorer",
body: "Follow private execution → public anchor in the portal.",
},
] as const;
export default function DevelopersPage() {
return (
<>
{LINKS.map((item) => (
-
))}
>
);
}