diff --git a/index.html b/index.html
index b2cdb44..bd1f9d0 100644
--- a/index.html
+++ b/index.html
@@ -5,6 +5,6 @@
Mino
- si tu vois ça c'est que ça marche
+
test
\ No newline at end of file
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..2d90ed6
--- /dev/null
+++ b/index.js
@@ -0,0 +1,56 @@
+import { useEffect } from "react";
+import { gsap } from "gsap";
+import Link from "next/link";
+
+export default function Home() {
+ useEffect(() => {
+ gsap.from(".fade-in", { opacity: 0, y: 20, duration: 1 });
+ }, []);
+
+ return (
+
+
Bienvenue sur mon Portfolio
+
Infrastructure | Réseau | Automatisation
+
+
+ Voir mes projets
+
+
+ Me contacter
+
+
+
+ );
+}
+
+export function Projects() {
+ return (
+
+
Mes Projets
+
+ - MariaDB sur Raspbian
+ - Serveur web avec Caddy
+ - Supervision avec Netdata
+ - Automatisation avec Scripts Bash/Python
+ - Calculatrice en C# avec Avalonia
+ - Application météo en C# .NET
+ - Jeu de type Mario en Python
+
+
+ );
+}
+
+export function Contact() {
+ return (
+
+
Me Contacter
+
N'hésitez pas à me contacter pour toute collaboration !
+
+
+ );
+}
\ No newline at end of file