tpmjs/apps/tutorial/src/app/playground/page.tsx
Ajax Davis 5d9e256660 feat: add 3 new tutorials (first-tool, agent-example, playground)
- Build Your First Tool: Step-by-step guide from npm init to published
- Real-World Agent: Complete working example with meta-tools
- Interactive Playground: How to test tools in browser

Each tutorial has 5-6 slides with code examples and animations.
Updated main page to show all 6 tutorials in grid.
2025-12-31 01:02:21 +10:00

16 lines
510 B
TypeScript

import { PlaygroundSlideshow } from '@/components/PlaygroundSlideshow';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Interactive Playground | TPMJS Tutorials',
description:
'Learn how to use the TPMJS playground to test tools directly in your browser. No installation required.',
};
export default function PlaygroundPage(): React.ReactElement {
return (
<main className="h-screen w-screen overflow-hidden">
<PlaygroundSlideshow />
</main>
);
}