import type { Topic } from '@/types'; export const TOPICS: Topic[] = [ // ─── Python ────────────────────────────────────────────────────────────── { id: 'python-variables', label: 'Python Variables', language: 'python', description: 'Learn how to store and work with different types of data', starterCode: '# Your code here\n', }, { id: 'python-lists', label: 'Python Lists', language: 'python', description: 'Create, modify, and iterate over collections of items', starterCode: '# Your code here\n', }, { id: 'python-loops', label: 'Python Loops', language: 'python', description: 'Repeat actions with for and while loops', starterCode: '# Your code here\n', }, { id: 'python-functions', label: 'Python Functions', language: 'python', description: 'Define reusable blocks of code that accept inputs and return outputs', starterCode: '# Your code here\n', }, { id: 'python-dicts', label: 'Python Dictionaries', language: 'python', description: 'Store and retrieve data using key-value pairs', starterCode: '# Your code here\n', }, { id: 'python-strings', label: 'Python Strings', language: 'python', description: 'Manipulate text with string methods and formatting', starterCode: '# Your code here\n', }, // ─── HTML / CSS ─────────────────────────────────────────────────────────── { id: 'html-structure', label: 'HTML Structure', language: 'html', description: 'Build the skeleton of a webpage with semantic HTML elements', starterCode: '\n\n
\n \n