Skip to content

Commit a016569

Browse files
committed
web: update /skills meta
1 parent 83ad889 commit a016569

File tree

1 file changed

+24
-17
lines changed

1 file changed

+24
-17
lines changed

web/app/skills/layout.tsx

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
import type { Metadata } from "next";
22

33
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",
511
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+
},
2023
};
2124

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;
2431
}

0 commit comments

Comments
 (0)