-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleap-of-faith.jsx
More file actions
23 lines (20 loc) · 805 Bytes
/
leap-of-faith.jsx
File metadata and controls
23 lines (20 loc) · 805 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 LeapOfFaith() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
The <strong className="text-current">Leap of Faith</strong> is a concept
by Søren Kierkegaard. It describes the act of believing in something
without, or in spite of, empirical evidence.
</p>
<div className="border-l-2 border-yellow-500/50 pl-4 py-1 italic opacity-70 text-xs">
"To have faith is to lose your mind and to win God."
</div>
<p>
Kierkegaard argued that objective certainty is impossible in religious
matters. True faith requires risk and passion; it is a subjective choice
made in the face of the [Absurd](/vocab/absurdism).
</p>
</div>
);
}