initial commit

This commit is contained in:
Dayamond
2025-10-13 16:42:16 +02:00
commit 4004517855
14 changed files with 2016 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import styles from "./HomePage.module.css"
function HomePage(){
return (
<div>
<h1 className={styles.title}>Accueil</h1>
</div>
)
}
export default HomePage;
+3
View File
@@ -0,0 +1,3 @@
.title {
color: red;
}