first commit

This commit is contained in:
2026-01-22 20:55:07 +00:00
parent a28c9ddc97
commit 278f821328
40 changed files with 8615 additions and 0 deletions

24
app/components/Certs.tsx Executable file
View File

@@ -0,0 +1,24 @@
import Image from "next/image";
import styles from "./components.module.css"
export default function Projects() {
return (
<div className={styles.window}>
<div className={styles.folder}>
<div className={styles.navFolder}>
<div className={styles.buttonContainer}>
<a href="/"style={{backgroundColor: "#FE4A45"}} className={styles.ball}>
</a>
<div style={{backgroundColor: "#FDBE05"}} className={styles.ball}>
</div>
<div style={{backgroundColor: "#05D02C"}} className={styles.ball}>
</div>
</div>
</div>
<div className={styles.folderContent}>
<a>No projects yet...</a>
</div>
</div>
</div>
);
}