Create Error Page

This commit is contained in:
2022-09-26 10:40:02 -04:00
parent 3747e2a07d
commit a4c14bb67c
8 changed files with 168 additions and 108 deletions

21
src/componets/Neon.js Normal file
View File

@@ -0,0 +1,21 @@
export default function ProjectList(props) {
let text;
props.children.forEach(function (x) {
text = (
<>
{text}
{x}
</>
);
});
text = (<div className='neonBox'>{text}</div>)
return (
<>
<div id="pBody">
<div className="fPage">
<div className="heightBox">{text}</div>
</div>
</div>
</>
);
}