Spaces:
Configuration error
Configuration error
File size: 644 Bytes
bcce530 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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
}
|