-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeist.jsx
More file actions
23 lines (20 loc) · 757 Bytes
/
Copy pathgeist.jsx
File metadata and controls
23 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react';
export default function Geist() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Geist</strong> is a central concept in
Hegel's philosophy, usually translated as "Spirit," "Mind," or "Ghost."
</p>
<div className="border-l-2 border-indigo-500/50 pl-4 py-1 italic opacity-70 text-xs">
"History is the autobiography of God."
</div>
<p>
Hegel saw history as the progressive unfolding of the World Spirit
(*Weltgeist*) becoming conscious of itself and its freedom. It's a
collective consciousness that evolves through
[Dialectics](/vocab/dialectic).
</p>
</div>
);
}