-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmagnum-opus.jsx
More file actions
31 lines (28 loc) · 1.09 KB
/
magnum-opus.jsx
File metadata and controls
31 lines (28 loc) · 1.09 KB
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
26
27
28
29
30
31
import React from 'react';
export default function MagnumOpus() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Magnum Opus</strong> (Latin for "great work") refers to the largest, and perhaps the best, greatest, most popular, or most renowned achievement of an artist, philosopher, or writer.
</p>
<div className="border-l-2 border-emerald-500/50 pl-4 py-1 italic opacity-70 text-xs">
"It is their defining masterpiece, the culmination of their career."
</div>
<p>Notable examples of a Magnum Opus:</p>
<ul className="space-y-2 text-xs opacity-80 list-disc pl-4">
<li>
<strong>Leonardo da Vinci:</strong> The <em>Mona Lisa</em>.
</li>
<li>
<strong>Ludwig van Beethoven:</strong> <em>Symphony No. 9</em>.
</li>
<li>
<strong>James Joyce:</strong> <em>Ulysses</em>.
</li>
<li>
<strong>Albert Einstein:</strong> The <em>Theory of General Relativity</em>.
</li>
</ul>
</div>
);
}