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:
@@ -1,21 +0,0 @@
|
||||
import { NextResponse } from 'next/server';
|
||||
|
||||
export const runtime = 'edge';
|
||||
|
||||
export async function GET() {
|
||||
const health = {
|
||||
status: 'healthy',
|
||||
service: 'blackroad-os-web',
|
||||
version: process.env.npm_package_version || '0.1.0',
|
||||
timestamp: new Date().toISOString(),
|
||||
uptime: process.uptime ? process.uptime() : null,
|
||||
environment: process.env.NODE_ENV || 'development',
|
||||
};
|
||||
|
||||
return NextResponse.json(health, {
|
||||
status: 200,
|
||||
headers: {
|
||||
'Cache-Control': 'no-cache, no-store, must-revalidate',
|
||||
},
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user