-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutilitarianism.jsx
More file actions
25 lines (22 loc) · 909 Bytes
/
utilitarianism.jsx
File metadata and controls
25 lines (22 loc) · 909 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
import React from 'react';
export default function Utilitarianism() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Utilitarianism</strong> is an ethical
theory that determines right from wrong by focusing on outcomes. It
holds that the most ethical choice is the one that will produce the
greatest good for the greatest number.
</p>
<div className="border-l-2 border-green-500/50 pl-4 py-1 italic opacity-70 text-xs">
"Maximize utility (happiness/well-being), minimize suffering."
</div>
<p>
Championed by Jeremy Bentham and John Stuart Mill. It is often
contrasted with <strong>Deontology</strong> (duty-based ethics), which
argues that some actions are inherently wrong regardless of their
consequences.
</p>
</div>
);
}