import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Zap } from "lucide-react"; import { PageHeader } from "@/components/layout/page-header"; // Mock project data const MOCK_PROJECT = { id: "1", name: "AI Proxy", emoji: "🤖", }; interface PageProps { params: Promise<{ projectId: string }>; } export default async function AutomationPage({ params }: PageProps) { const { projectId } = await params; return ( <>
{/* Hero Section */}
Automation Create workflows, set up triggers, and automate repetitive tasks

Coming Soon

Build custom workflows to automate testing, deployment, notifications, and other development tasks to accelerate your workflow.

); }