- 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.
16 lines
510 B
TypeScript
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>
|
|
);
|
|
}
|