From 5442cebfb55fa30c637fd0fbc6413b304ccaa04d Mon Sep 17 00:00:00 2001 From: OK Date: Tue, 21 Jan 2025 22:38:58 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20des=20Centres=20d'int=C3=A9r=C3=AAt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 + src/components/Footer/Footer.tsx | 2 +- src/components/Interests/Interests.tsx | 81 ++++++++++++++++++++++++++ 3 files changed, 84 insertions(+), 1 deletion(-) create mode 100644 src/components/Interests/Interests.tsx diff --git a/src/App.tsx b/src/App.tsx index 2df7b63..47c1003 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import { Hero } from './components/Hero/Hero'; import { Education } from './components/Education/Education'; import { Experience } from './components/Experience/Experience'; import { Skills } from './components/Skills/Skills'; +import { Interests } from './components/Interests/Interests'; import { Portfolio } from './components/Portfolio/Portfolio'; import { Languages } from './components/Languages/Languages'; import { Footer } from './components/Footer/Footer'; @@ -14,6 +15,7 @@ function App() { +
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 4a64d62..f7022c7 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -13,7 +13,7 @@ export const Footer = () => { -

© 2024 Deniz OK

+

© 2024 Deniz OK. Tous droits réservés.

); diff --git a/src/components/Interests/Interests.tsx b/src/components/Interests/Interests.tsx new file mode 100644 index 0000000..4c21f76 --- /dev/null +++ b/src/components/Interests/Interests.tsx @@ -0,0 +1,81 @@ +import React from 'react'; +import { Heart, Gamepad2, Music, Book } from 'lucide-react'; + +export const Interests = () => { + return ( +
+
+

+ + Centres d'intérêt +

+
+
+

+ + Culture Japonaise +

+

+ Passionné d'animes et de mangas. Parmi mes préférés : +

+
    +
  • • Chainsaw Man
  • +
  • • Naruto
  • +
  • • Jujutsu Kaisen
  • +
  • • Fullmetal Alchemist: Brotherhood
  • +
  • • Death Note
  • +
+
+ +
+

+ + Musique +

+

+ Éclectique dans mes goûts musicaux : +

+
    +
  • • Rap : Future, Kendrick Lamar, Freeze Corleone
  • +
  • • Rock : Linkin Park
  • +
  • • J-pop : Flow, Ado, Creepy Nuts, SiM, Survive Said The Prophet, MAN WITH A MISSION
  • +
+
+ +
+

+ + Jeux Vidéo +

+

+ Amateur de jeux de stratégie et MOBA : +

+
    +
  • • Age of Empires
  • +
  • • Football Manager
  • +
  • • Civilization
  • +
  • • League of Legends
  • +
  • • Crusader Kings III
  • +
  • • Mobile Legends
  • +
+
+ +
+

+ + Mythologie +

+

+ Passionné par les contes mythologiques : +

+
    +
  • • Mythologie Grecque
  • +
  • • Mythologie Romaine
  • +
  • • Mythologie Viking
  • +
+
+
+
+
+ ); +}; \ No newline at end of file