- 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>
11 lines
257 B
TypeScript
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>
|
|
);
|
|
}
|