chore: initial commit

This commit is contained in:
Stevan Freeborn
2023-04-07 23:18:45 -05:00
parent 15058b3908
commit 64520bf786
21 changed files with 7869 additions and 472 deletions
+12
View File
@@ -0,0 +1,12 @@
import styles from './SideBar.module.css';
export default function SideBar() {
return (
<div className={styles.container}>
<h1 className={styles.title}>
<span className={styles.onspring}>Onspring</span>{' '}
<span className={styles.api}>API</span>
</h1>
</div>
);
}