blob: b4f926644bae9f69580ee9f7edd8261d6e268698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import React from 'react'
export default function SearchWarning() {
return (
<div className='safety'>
<div>
<h4>Safety Tips</h4>
<ul>
<li> Look away if you see something traumatic </li>
<li> Hit <tt>ESC</tt> to activate panic mode (hides all images) </li>
<li> Use thumbnails to reduce details </li>
<li> Take breaks and refresh yourself with positive imagery </li>
</ul>
</div>
</div>
)
}
|