-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdasein.jsx
More file actions
24 lines (21 loc) · 761 Bytes
/
dasein.jsx
File metadata and controls
24 lines (21 loc) · 761 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
import React from 'react';
export default function Dasein() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Dasein</strong> (German for
"Being-there") is Martin Heidegger's term for the distinctive mode of
human being.
</p>
<div className="border-l-2 border-blue-500/50 pl-4 py-1 italic opacity-70 text-xs">
"We are thrown into the world."
</div>
<p>
Unlike objects (which just "are"), humans care about their own
existence. Dasein is always defined by its relationship to the world, to
time, and to others. It is not an isolated subject, but a
"Being-in-the-world."
</p>
</div>
);
}