import type React from 'react'; import Link from 'next/link'; const features = [ { icon: '🔑', title: 'Agent Identity', description: 'Assign every AI agent a cryptographic identity backed by W3C DIDs. No more shared secrets or hard-coded API keys.', }, { icon: '🛡️', title: 'OAuth 2.0 & OIDC', description: 'Issue short-lived access tokens with fine-grained scopes. Integrate with any standards-compliant authorization server.', }, { icon: '📋', title: 'Full Audit Trail', description: 'Every agent action is logged with tamper-evident entries. Meet SOC 2, ISO 27001, and enterprise compliance requirements.', }, { icon: '⚡', title: 'High Performance', description: 'Token issuance p95 under 500 ms at 1,000 concurrent agents. Redis-backed rate limiting scales horizontally.', }, ]; export default function HomePage(): React.ReactElement { return ( <> {/* Hero */}
Identity for AI Agents

Secure Every Agent.{' '} Trust Every Call.

SentryAgent AgentIdP is the identity and access management platform built for AI agents. Register agents, issue OAuth 2.0 tokens, enforce policies, and audit every interaction — all from a single API.

Get Started Free Explore the API
{/* Features */}

Everything your agents need to stay secure

{features.map(({ icon, title, description }) => (
{icon}

{title}

{description}

))}
{/* CTA Banner */}

Ready to secure your AI agents?

Get started in minutes. Free tier includes 10 agents and 1,000 API calls per day — no credit card required.

Start Building Now
); }