-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpluribus.jsx
More file actions
25 lines (24 loc) · 910 Bytes
/
pluribus.jsx
File metadata and controls
25 lines (24 loc) · 910 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 Pluribus() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Pluribus</strong> is Latin for "from
many" or "more". It is most famously known as part of the United States
motto <em className="text-current not-italic">E pluribus unum</em> ("Out
of many, one").
</p>
<p>
Thematically, it represents the concept of{' '}
<strong className="text-current">unity from diversity</strong>.
</p>
<div className="border border-white/10 bg-white/[0.02] p-4 text-xs text-gray-400">
<p>
In the context of sci-fi or hive-mind narratives, "Pluribus" often
ironically contrasts the loss of individual identity against the
strength of the collective.
</p>
</div>
</div>
);
}