Course Finder & Grammar Tutor

Learning Assistant

Find courses or improve your writing with a grammar tutor.

Find Open-Source Course Materials

Enter a topic to find free course materials.

Spelling & Grammar Tutor

Your personalized grammar and spelling lesson will appear here.

No errors were found in your text.

'; return; } lessons.forEach(lesson => { const card = document.createElement('div'); card.className = 'bg-white p-5 rounded-lg shadow border'; card.innerHTML = `

${lesson.error_type}

${lesson.original_phrase} ${lesson.corrected_phrase}

Why it changed:

${lesson.explanation}

`; tutorResultsContainer.appendChild(card); }); }; // --- Event Listeners --- findCourseBtn.addEventListener('click', handleCourseMaterialSearch); courseTopicInput.addEventListener('keyup', (event) => { if (event.key === 'Enter') { event.preventDefault(); findCourseBtn.click(); } }); tutorBtn.addEventListener('click', handleTutorAnalysis); // --- Initial Load --- showTab('courseFinderTab'); });
Scroll to Top