+ Website generated by DeepSeek from prompt: an interactive educational platform that teaches complex problem-solving through branching, real-world scenarios where users can explore different solution paths and see the consequences of their choices. The site would combine visual learning tools, collaborative features, and cross-domain challenges to help users develop practical problem-solving skills while understanding the "why" behind different approaches.
script.js
Changed around line 1
+ const scenarios = {
+ 1: {
+ title: "Urban Planning Challenge",
+ description: "You're tasked with designing a sustainable city layout for a growing population. How will you approach this complex problem?",
+ decisions: [
+ {
+ text: "Prioritize green spaces and public transportation",
+ outcome: "Your city becomes a model for sustainable living, attracting eco-conscious residents and businesses."
+ },
+ {
+ text: "Focus on high-density housing and commercial zones",
+ outcome: "The city experiences rapid growth but struggles with traffic congestion and pollution."
+ }
+ ],
+ resources: [
+ "Urban planning best practices",
+ "Sustainable development principles",
+ "Case studies of successful cities"
+ ]
+ },
+ 2: {
+ title: "Startup Strategy Challenge",
+ description: "You're launching a new tech startup. What's your approach to gaining market traction?",
+ decisions: [
+ {
+ text: "Focus on rapid user acquisition through aggressive marketing",
+ outcome: "You gain many users quickly but struggle with retention and profitability."
+ },
+ {
+ text: "Build a core product with a small, dedicated user base",
+ outcome: "Your startup grows slowly but develops a loyal customer base and strong product-market fit."