Spaces:
Configuration error
Configuration error
File size: 726 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: "Prompt Frameworks | OpenPrompt",
description: "Master proven prompt engineering frameworks — RACE, RTF, Chain of Thought, Tree of Thought, and more. Learn structured approaches to craft better AI prompts.",
url: `${BASE_URL}/frameworks`,
keywords: ["prompt frameworks", "RACE framework", "chain of thought", "prompt engineering techniques", "structured prompting"],
}) as Metadata
export default function FrameworksLayout({ children }: { children: React.ReactNode }) {
return children
}
|