Website/components/alert.js

11 lines
422 B
JavaScript

import styles from '../styles/Alert.module.css'
export default function Alert() {
return (
<>
<div className={styles.Alert}>
<i className="fas fa-exclamation-triangle" style={{paddingRight: '30px', paddingLeft: '20px'}}/><span>Warning! There is a Log4J Java Exploit going around, it's still not patched in some Java applications! Please stay safe!</span>
</div>
</>
)
}