From 8f8956bc1a457fc26257bac838d58c97e73347bd Mon Sep 17 00:00:00 2001 From: Camerin Figueroa Date: Sat, 1 Oct 2022 10:38:12 -0400 Subject: [PATCH] Added skills to cards on About Page --- src/components/About.js | 42 ++++++++++++++++++++++------ src/components/css/Card.css | 33 ++++++++++++++++++++++ src/components/subcomponents/Card.js | 11 ++++++++ 3 files changed, 77 insertions(+), 9 deletions(-) diff --git a/src/components/About.js b/src/components/About.js index 288e025..96bae56 100644 --- a/src/components/About.js +++ b/src/components/About.js @@ -26,14 +26,6 @@ class About extends React.Component { JSX is a part of react which makes it easy to design websites directly in javascript code. - - Throughout my college experience I've been able to improve my understanding of how computers work and how to design different software. - I have completed my A.S. degree from Orange County Community College in Computer Science. In the past 2 years I've been working towards my - Bachelors degree in computer science at Marist College in Poughkeepsie. Throughout my college experience I've been able to work with others in - teams and I am currently as of the Fall 2021 Semester been working on a team for a Capstone Project which I can hopefully list on this website - at the end of this semester. - - You can find a few of my projects on my Github or look through a list of projects on this website @@ -41,7 +33,39 @@ class About extends React.Component { social media below, just click the image and it'll bring you to the selected website. - + + N/a + + + + N/a + + + + Throughout my college experience I've been able to improve my understanding of how computers work and how to design different software. + I have completed my A.S. degree from Orange County Community College in Computer Science. In the past 2 years I've been working towards my + Bachelors degree in computer science at Marist College in Poughkeepsie. Throughout my college experience I've been able to work with others in + teams and I am currently as of the Fall 2021 Semester been working on a team for a Capstone Project which I can hopefully list on this website + at the end of this semester. + + + + N/a + + +

You can access a list of github repositories that I've created directly on this site.

Learn More
diff --git a/src/components/css/Card.css b/src/components/css/Card.css index 6c487e7..8125bdf 100644 --- a/src/components/css/Card.css +++ b/src/components/css/Card.css @@ -36,6 +36,39 @@ background-color: #FAFAFF } +.card .skill-row { + display: flex; + flex-direction: row; + align-items: center; + +} + +.card .skills-label { + display:flex; + align-items: center; + font-size: larger; +} + +.card .skills { + display: flex; + flex-direction: row; + flex-wrap: wrap; + align-content: center; + align-items: center; + padding: 5px; + width: 100%; +} + +.card .skill { + padding: 5px; + margin: 2px; + margin-left: 5px; + border-radius: 10px; + background-color: #756B6A; + color: #DAD4DF; + font-size: medium; +} + @media only screen and (max-width: 600px) { .card { diff --git a/src/components/subcomponents/Card.js b/src/components/subcomponents/Card.js index 0e22fa9..7b3f189 100644 --- a/src/components/subcomponents/Card.js +++ b/src/components/subcomponents/Card.js @@ -28,6 +28,17 @@ const Card = (props) => {
{props.children}
+ { + props.skills && +
+
Skills:
+
+ { + props.skills?props.skills.map(language=>
{language}
):"" + } +
+
+ } {props.title}/