|
1 | 1 | import type { Metadata } from "next"; |
2 | 2 |
|
3 | 3 | export const metadata: Metadata = { |
4 | | - title: "Explore Skills - AI DevKit", |
| 4 | + title: |
| 5 | + "AI Agent Skills That Make Your Agents Work Like Real Engineers - AI DevKit", |
| 6 | + description: |
| 7 | + "Browse reusable AI agent skills for structured coding workflows, testing, debugging, and code review. Build agents with reusable commands instead of rewriting prompts every time.", |
| 8 | + openGraph: { |
| 9 | + title: |
| 10 | + "AI Agent Skills That Make Your Agents Work Like Real Engineers - AI DevKit", |
5 | 11 | description: |
6 | | - "Browse and search through hundreds of skills available for AI DevKit. Find the perfect skills to enhance your AI coding agents.", |
7 | | - openGraph: { |
8 | | - title: "Explore Skills - AI DevKit", |
9 | | - description: |
10 | | - "Browse and search through hundreds of skills available for AI DevKit. Find the perfect skills to enhance your AI coding agents.", |
11 | | - url: "https://ai-devkit.com/skills", |
12 | | - type: "website", |
13 | | - }, |
14 | | - twitter: { |
15 | | - card: "summary_large_image", |
16 | | - title: "Explore Skills - AI DevKit", |
17 | | - description: |
18 | | - "Browse and search through hundreds of skills available for AI DevKit. Find the perfect skills to enhance your AI coding agents.", |
19 | | - }, |
| 12 | + "Browse reusable AI agent skills for structured coding workflows, testing, debugging, and code review. Build agents with reusable commands instead of rewriting prompts every time.", |
| 13 | + url: "https://ai-devkit.com/skills", |
| 14 | + type: "website", |
| 15 | + }, |
| 16 | + twitter: { |
| 17 | + card: "summary_large_image", |
| 18 | + title: |
| 19 | + "AI Agent Skills That Make Your Agents Work Like Real Engineers - AI DevKit", |
| 20 | + description: |
| 21 | + "Browse reusable AI agent skills for structured coding workflows, testing, debugging, and code review. Build agents with reusable commands instead of rewriting prompts every time.", |
| 22 | + }, |
20 | 23 | }; |
21 | 24 |
|
22 | | -export default function SkillsLayout({ children }: { children: React.ReactNode }) { |
23 | | - return children; |
| 25 | +export default function SkillsLayout({ |
| 26 | + children, |
| 27 | +}: { |
| 28 | + children: React.ReactNode; |
| 29 | +}) { |
| 30 | + return children; |
24 | 31 | } |
0 commit comments