From ec7721978d3e19705c93f3e34215d7bc19e088a8 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Thu, 21 Aug 2025 14:45:19 +0000 Subject: [PATCH] revert 76c89e21f5baefbe6232b0e5306e8a6a9a4661bd revert Merge pull request 'feature/SingleProject' (#4) from feature/SingleProject into feature/skillSection Reviewed-on: https://gitea.josserand.ovh/Giovanni-Josserand/Portfolio/pulls/4 --- src/components/SingleProject.jsx | 32 ------------ src/styles/SingleProject.css | 87 -------------------------------- 2 files changed, 119 deletions(-) delete mode 100644 src/components/SingleProject.jsx delete mode 100644 src/styles/SingleProject.css diff --git a/src/components/SingleProject.jsx b/src/components/SingleProject.jsx deleted file mode 100644 index 1603a0c..0000000 --- a/src/components/SingleProject.jsx +++ /dev/null @@ -1,32 +0,0 @@ -import SkillCard from './SkillCard'; -import "../styles/SingleProject.css"; -function SingleProject({image, title, description, skills, color}) { - return ( -
-
- {image}/ -
-
- -
-
-

{title}

-

- {description} -

-
    - {skills.map(skill => ( -
  • - ))} -
-

- Learn more -

-
- -
- ) -} - - -export default SingleProject \ No newline at end of file diff --git a/src/styles/SingleProject.css b/src/styles/SingleProject.css deleted file mode 100644 index c4a494f..0000000 --- a/src/styles/SingleProject.css +++ /dev/null @@ -1,87 +0,0 @@ -.single-project { - display: flex; - width: 80%; - margin: 2rem auto; - background-color: #1E1E1E; - overflow: hidden; - transition: all 0.3s ease-in-out; - border-radius: 12px; -} - -.single-project:hover { - transform: translateY(-5px); - box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); -} - -.single-project-left { - flex-shrink: 0; - width: 55%; -} - -.single-project-left img { - width: 100%; - height: 100%; - object-fit: cover; - display: block; -} - -.single-project-right { - display: flex; - flex-direction: column; - justify-content: space-between; - padding: 2rem 2rem 2rem 0rem; - align-items: flex-start; -} - -.single-project-title { - font-size: 2rem; - color: #EAEAEA; - margin-top: 0; - margin-bottom: 1rem; -} - -.single-project-description { - color: #B0B0B0; - margin-bottom: 1.5rem; - text-align: justify; -} - -.single-project-skills-list { - display: flex; - flex-wrap: wrap; - list-style: none; - padding: 0; - margin: 0; - gap: 8px; -} - - -.single-project-link { - color: #EAEAEA; - text-decoration: none; - font-weight: 600; -} - - - -.single-project-middle { - padding: 2rem 0.5rem; -} - -.single-project-line { - border-radius: 38px; - min-width: 1.5rem; - height: 0.25rem; - margin-top: 1.5rem; - margin-left: 2rem; -} - -.color-orange{ - background-color: #D95F46; -} -.color-purple{ - background-color: #a646d9; -} -.color-green{ - background-color: #36a837; -} \ No newline at end of file