Spaces:
Running
Running
File size: 7,974 Bytes
ad1dcd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
<html><head><base href="https://websim.ai/perspectives-ponderer"><title>Perspectives Ponderer: Weigh Pros and Cons with Depth</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@keyframes tilt {
0%, 100% { transform: rotate(0deg); }
25% { transform: rotate(-5deg); }
75% { transform: rotate(5deg); }
}
.scale-tilt {
animation: tilt 5s infinite ease-in-out;
transform-origin: center;
}
</style>
</head>
<body class="bg-gradient-to-br from-teal-500 to-blue-600 text-gray-100 min-h-screen font-sans">
<header class="py-6 relative">
<div class="container mx-auto px-4">
<h1 class="text-4xl font-bold text-center text-white">Perspectives Ponderer ⚖️</h1>
<p class="mt-2 text-center text-teal-100">Weigh Pros and Cons with Depth</p>
</div>
</header>
<main class="container mx-auto px-4 py-8">
<div class="bg-white rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold mb-4 text-teal-800">Ponder a Topic</h2>
<form id="ponderer-form" method="GET" action="https://websim.ai/perspectives-ponderer" class="space-y-4">
<div>
<label for="topic-input" class="block text-sm font-medium text-gray-700">Your Topic:</label>
<input type="text" id="topic-input" name="topic" class="mt-1 block w-full px-3 py-2 bg-gray-50 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-teal-500 text-gray-900" placeholder="Enter a topic to analyze...">
</div>
<div>
<label for="perspective-depth" class="block text-sm font-medium text-gray-700">Analysis Depth:</label>
<select id="perspective-depth" name="depth" class="mt-1 block w-full px-3 py-2 bg-gray-50 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-teal-500 text-gray-900">
<option value="brief">Brief Overview</option>
<option value="moderate">Moderate Analysis</option>
<option value="in-depth">In-Depth Exploration</option>
</select>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-teal-600 hover:bg-teal-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-teal-500">
Ponder Perspectives 🤔
</button>
</div>
</form>
</div>
<div id="result-container" class="bg-white rounded-lg shadow-lg p-6 hidden">
<h2 class="text-2xl font-semibold mb-4 text-teal-800">Perspectives Analysis</h2>
<div id="analysis-result" class="space-y-4">
<!-- Analysis result will be inserted here -->
</div>
</div>
<div class="mt-8 bg-white rounded-lg shadow-lg p-6">
<h2 class="text-2xl font-semibold mb-4 text-teal-800">Critical Thinking Tips</h2>
<ul class="list-disc list-inside space-y-2 text-gray-700">
<li>Consider multiple viewpoints</li>
<li>Look for evidence and data to support claims</li>
<li>Identify potential biases</li>
<li>Think about long-term consequences</li>
<li>Question assumptions and challenge your own beliefs</li>
</ul>
</div>
</main>
<script>
</script>
</body></html> |