-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialectic.jsx
More file actions
30 lines (27 loc) · 944 Bytes
/
dialectic.jsx
File metadata and controls
30 lines (27 loc) · 944 Bytes
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
import React from 'react';
export default function Dialectic() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
The <strong className="text-current">Hegelian Dialectic</strong> is a
framework for understanding progress and history. It is often simplified
as a three-step process:
</p>
<div className="border-l-2 border-purple-500/50 pl-4 py-1 italic opacity-70 text-xs">
"Conflict is the engine of progress."
</div>
<ul className="space-y-2 text-xs opacity-80 list-disc pl-4">
<li>
<strong>Thesis:</strong> An initial idea or status quo.
</li>
<li>
<strong>Antithesis:</strong> The conflicting idea or reaction.
</li>
<li>
<strong>Synthesis:</strong> The resolution that merges the best of
both, becoming the new thesis.
</li>
</ul>
</div>
);
}