-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoi-rating.jsx
More file actions
19 lines (18 loc) · 833 Bytes
/
poi-rating.jsx
File metadata and controls
19 lines (18 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import React from 'react';
export default function PoiRating() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Rating of Person of Interest</strong>{' '}
is <strong className="text-emerald-500 text-lg">100</strong> out of 5.{' '}
<span className="italic text-gray-400">This is not a mistake</span>...
It does not fit well with the rest of the ratings or the rating system
itself. Because it is an exceptional show. It is the only{' '}
<strong className="text-current">AI</strong> related work of art that
captured the true essence of being{' '}
<strong className="text-current">human</strong>.
</p>
<p>Some might even say, it used to be my favorite tv show...</p>
</div>
);
}