-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqualia.jsx
More file actions
22 lines (19 loc) · 757 Bytes
/
qualia.jsx
File metadata and controls
22 lines (19 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
import React from 'react';
export default function Qualia() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Qualia</strong> (singular: quale) are
individual instances of subjective, conscious experience.
</p>
<div className="border-l-2 border-pink-500/50 pl-4 py-1 italic opacity-70 text-xs">
"The redness of a rose, the smell of coffee, the pain of a headache."
</div>
<p>
Daniel Dennett called qualia "an unfamiliar term for something that
could not be more familiar to each of us: the ways things seem to us."
It is the central problem in the "Hard Problem of Consciousness."
</p>
</div>
);
}