import { Lock, ShieldCheck } from "lucide-react"; import Link from "next/link"; import { AgentToken } from "./AgentToken"; import { HeroAmbient } from "./HeroAmbient"; /* Marketing landing — WorkClaw's full section layout/styling reproduced 1:1, Clawmates-branded with honest claims (no borrowed customer logos, no unverified SOC 2). Measurements/colours lifted from the live source. Coral text on light fills uses the AA-safe `coral-strong`; #e0584a stays on dark fills and solid buttons. */ const ctaCoral = "inline-flex items-center justify-center rounded-full bg-marketing-coral-strong font-semibold text-white transition-colors hover:bg-[#a63a2f]"; /* ---------- Hero ---------- */ export function Hero() { return (
{/* Animated ambient backdrop (replaces the hero illustration). */}
Agentic infrastructure

Build safe, scalable
agentic systems

From a single agent to an entire company of them — with the hierarchy, controls, and human approvals to run them safely in production.

Book a demo Read the docs
{/* Soft fade into the white section below. */}
); } /* ---------- Crew strip (agent-token roster on the open Claw runtime) ---------- */ const CREW = [ "Marketing Claw", "Support Claw", "Research Claw", "Engineering Claw", "Ops Claw", "Growth Claw", "Analytics Claw", "Design Claw", ]; export function CrewStrip() { return (

A whole crew, built on the open{" "} Claw runtime

{CREW.map((name) => (
{name}
))}
); } /* ---------- Enhanced security ---------- */ const SECURITY = [ { icon: "icon-admin", title: "Admin controls", body: "Admins can control access, app integrations, and skill installations." }, { icon: "icon-vault", title: "Custom-built vault", body: "Credentials are stored in a secure vault that can require human approval." }, { icon: "icon-separation", title: "Separation of data", body: "Each clawmate has a separate computer with private file storage." }, { icon: "icon-soc2", title: "Air-gappable", body: "Install from a signed, offline-verified bundle and run fully air-gapped." }, ]; export function Security() { return (

Enhanced security

Clawmates is built for security-minded teams, adding a layer of control and safety on top of the open Claw runtime.

{SECURITY.map((s) => (

{s.title}

{s.body}

))}
); } /* ---------- Footer (CTA tier + dark tier) ---------- */ const FOOTER_LINKS = [ { label: "Sign up", href: "/login" }, { label: "Pricing", href: "#crew" }, { label: "Docs", href: "#" }, { label: "Contact", href: "mailto:sales@clawmates.work" }, { label: "Blog", href: "#deck" }, { label: "Book a demo", href: "mailto:sales@clawmates.work" }, ]; export function Footer() { return ( ); } const SOCIALS = [ { label: "Instagram", icon: () }, { label: "X", icon: () }, { label: "LinkedIn", icon: () }, ];