FAQ

Comprehensive answers to your most common questions

interface FaqEntry {
  question: string;
  answer: string;
  category: 'general' | 'technical' | 'billing';
}

const FAQ_DATABASE = fetch('/api/faq').then(res => res.json());

// Smart search and filtering
FAQ_DATABASE.search('How to save progress') // auto-completes to relevant entries

Frequently Asked Questions

How do I save my tutorial progress?

Why is my interactive code environment not working?

How do I contact support?

How can I access premium content?

Can I cancel my subscription?

How can I share my progress with others?