Create a new Next.js App Router page with TypeScript and proper structure
/plugin marketplace add sati-technology/sati-claude-marketplace/plugin install sati-technology-nextjs-mdx-website-plugins-nextjs-mdx-website@sati-technology/sati-claude-marketplace# New Page Creates a new page in the Next.js App Router with TypeScript, metadata, and client/server component structure. ## Usage /new-page [route-path] ## What This Does 1. Creates directory in `src/app/[route-path]/` 2. Generates `page.tsx` with proper TypeScript types 3. Creates `metadata.ts` for SEO 4. Optionally creates `ClientPage.tsx` for client-side interactivity 5. Sets up proper imports and exports ## Examples Creates: ## Page Structure ### Server Component (page.tsx) ### Client Component (ClientPage.tsx) ### Metadata (metadata.ts) ## Requirements - Next.js 15 ...