import { ProjectOptions } from '../utils/prompts'; export function generateIndexHtml(options: ProjectOptions): string { switch (options.framework) { case 'Next.js': case 'Astro': return ''; // Next.js and Astro don't need index.html case 'React': case 'Vue': default: const ext = options.language === 'TypeScript' ? 'tsx' : 'jsx'; return ` ${options.projectName}
`; } }