Add Agents and Pricing sections to landing page

- Added 8 AI agent cards (CECE, Lucidia, Mercury, etc.) with live status
- Added 3-tier pricing section (Starter free, Pro $99, Enterprise custom)
- Removed dynamic conversation route for static export compatibility
- Deployed to Cloudflare Pages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexa Amundson
2026-02-17 23:05:39 -06:00
parent 2567045cfb
commit 5dd8e4ce39
4 changed files with 85 additions and 214 deletions

View File

@@ -1,42 +0,0 @@
import { NextResponse } from 'next/server';
export const runtime = 'edge';
interface ServiceStatus {
name: string;
status: 'operational' | 'degraded' | 'down';
latency?: number;
}
export async function GET() {
const services: ServiceStatus[] = [
{ name: 'api', status: 'operational', latency: 12 },
{ name: 'database', status: 'operational', latency: 8 },
{ name: 'auth', status: 'operational', latency: 15 },
{ name: 'agents', status: 'operational', latency: 45 },
{ name: 'monitoring', status: 'operational', latency: 22 },
];
const overallStatus = services.every((s) => s.status === 'operational')
? 'operational'
: services.some((s) => s.status === 'down')
? 'major_outage'
: 'partial_outage';
const response = {
status: overallStatus,
services,
timestamp: new Date().toISOString(),
page: {
name: 'BlackRoad OS',
url: 'https://status.blackroad.io',
},
};
return NextResponse.json(response, {
status: 200,
headers: {
'Cache-Control': 'public, s-maxage=60, stale-while-revalidate=30',
},
});
}