From 7d3ae56c23c611a12e65f0e511618c02aa56aa28 Mon Sep 17 00:00:00 2001 From: Morph01 <145839520+Morph01@users.noreply.github.com> Date: Sun, 11 Feb 2024 20:45:10 +0100 Subject: [PATCH] add section MyPorfolio, section ContactMe, section Footer --- src/Pages/Home/ContactMe.jsx | 18 +++++++ src/Pages/Home/Footer.jsx | 86 ++++++++++++++++++++++++++++++++++ src/Pages/Home/MyPortfolio.jsx | 19 +++++--- 3 files changed, 116 insertions(+), 7 deletions(-) create mode 100644 src/Pages/Home/ContactMe.jsx create mode 100644 src/Pages/Home/Footer.jsx diff --git a/src/Pages/Home/ContactMe.jsx b/src/Pages/Home/ContactMe.jsx new file mode 100644 index 0000000..0310b52 --- /dev/null +++ b/src/Pages/Home/ContactMe.jsx @@ -0,0 +1,18 @@ +export default function ContactMe() { + return ( +
+
+

Rentrer en Contact

+

Contactez Moi

+

+ Si vous voulez me contacter, vous pouvez m'envoyer un mail à l'adresse + email suivante : +

+ thibaut.alessi@free.fr +

+ Ou bien directement par LinkedIn en bas de page. +

+
+
+ ); +} diff --git a/src/Pages/Home/Footer.jsx b/src/Pages/Home/Footer.jsx new file mode 100644 index 0000000..2543c8e --- /dev/null +++ b/src/Pages/Home/Footer.jsx @@ -0,0 +1,86 @@ +import { Link } from "react-scroll"; +import React from "react"; + +function Footer() { + return ( + + ); +} + +export default Footer; \ No newline at end of file diff --git a/src/Pages/Home/MyPortfolio.jsx b/src/Pages/Home/MyPortfolio.jsx index 6ca8075..d1ffa75 100644 --- a/src/Pages/Home/MyPortfolio.jsx +++ b/src/Pages/Home/MyPortfolio.jsx @@ -1,15 +1,20 @@ +import { Link } from "react-router-dom"; import data from "../../data/index.json"; export default function MyPortfolio() { + const openGitHub = (link) => { + window.open(link, "_blank"); + }; + return (
-

Recent Projects

-

My Portfolio

+

Projets récents

+

Mon Portfolio

-
@@ -39,8 +44,8 @@ export default function MyPortfolio() {

{item.title}

{item.description}

-

- {item.link} +

openGitHub(item.link)}> + {item.voir}

); -} \ No newline at end of file +}