Spaces:
Configuration error
Configuration error
| import { Metadata } from "next" | |
| import { generateSEO } from "@/lib/seo" | |
| const BASE_URL = process.env.NEXT_PUBLIC_APP_URL || 'https://open-prompt.netlify.app' | |
| export const metadata: Metadata = generateSEO({ | |
| title: "AI Workflows | OpenPrompt", | |
| description: "Build and run multi-step AI workflows. Chain prompts together to automate complex tasks with multiple AI models.", | |
| url: `${BASE_URL}/workflows`, | |
| keywords: ["AI workflows", "prompt chains", "workflow automation", "multi-step AI", "AI pipeline"], | |
| }) as Metadata | |
| export default function WorkflowsLayout({ children }: { children: React.ReactNode }) { | |
| return children | |
| } | |