tpmjs/apps/tutorial/src/app/authors/page.tsx
Ajax Davis 4a13709a3d feat: add two-tutorial structure with landing page
- Create landing page at / with cards linking to both tutorials
- Add /agents route for agent developers (search & execute)
- Add /authors route for package authors (publish tools)
- Create 9 author slides covering the publishing workflow
- Rename Slideshow.tsx to AgentSlideshow.tsx
- Add back navigation buttons to both slideshows
- Fix array key lint errors using unique slide IDs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-29 13:36:57 +10:00

11 lines
257 B
TypeScript

'use client';
import { AuthorSlideshow } from '@/components/AuthorSlideshow';
export default function AuthorsTutorial(): React.ReactElement {
return (
<main className="h-screen w-screen overflow-hidden">
<AuthorSlideshow />
</main>
);
}