homepage.js/react/resume/src/emulation/files.js

15 lines
433 B
JavaScript

const Hi = (props) => {
return <span style={{color:'seagreen',fontWeight:'bold'}}>{...props.children}</span>
}
module.exports = {
'about.txt': <>
Hi! This is my online resume.
<br/>
You can browse files with <Hi>ls</Hi>, and read them with <Hi>cat</Hi>.
<br/>
Also check out <Hi>skills</Hi>.
</>,
'super_secret_password.txt':
<span style={{color:'orange',fontWeight:'bold'}}>uwu</span>,
}