Readded directories with uppercase

This commit is contained in:
Keannu Christian Bernasol 2023-02-24 17:22:12 +08:00
parent d54e6be430
commit 101a8e8ae6
21 changed files with 737 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import React from "react";
import styles from "../../styles";
import NotFoundIcon from "../../Components/Icons/NotFoundIcon/NotFoundIcon";
export default function Error() {
return (
<div style={styles.content_center}>
<div style={styles.content_column}>
<NotFoundIcon size={64} color="#a44141" />
<p style={styles.text}>Could not find the requested page</p>
</div>
</div>
);
}