13 lines
521 B
TypeScript
13 lines
521 B
TypeScript
export default function Trash() {
|
||
return (
|
||
<div style={{ padding: 40, color: '#fff', textAlign: 'center' }}>
|
||
<div style={{ fontSize: 64, marginBottom: 16 }}>🗑️</div>
|
||
<h2 style={{ fontSize: 18, fontWeight: 600, marginBottom: 8 }}>Trash</h2>
|
||
<p style={{ fontSize: 13, color: 'rgba(255,255,255,0.4)', marginBottom: 20 }}>The trash is empty.</p>
|
||
<p style={{ fontSize: 12, color: 'rgba(255,255,255,0.2)', fontStyle: 'italic' }}>
|
||
just like my social life
|
||
</p>
|
||
</div>
|
||
);
|
||
}
|