Skip to content

Commit

Permalink
updates tech stack and darkmode copy color in Tech Box
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole-m-martin committed Jun 10, 2024
1 parent 5398c26 commit acf5442
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/Components/Tech.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import React from 'react';

const Tech = ({ one, two, three, four }) => {
const Tech = ({ one, two, three, four, five }) => {
return (
<div>
<ul>
<li>{one}</li>
<li>{two}</li>
<li>{three}</li>
<li>{four}</li>
<li>{five}</li>
</ul>
</div>
);
Expand Down
17 changes: 9 additions & 8 deletions src/containers/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Home = () => {
<>
<div className={styles.mainSection}>
<div className={styles.innerSection}>
<h1 className={styles.title}>Hello World🌎</h1>
<h1 className={styles.title}>Hello World 🌎</h1>

<p className={styles.subtitle}>
I'm <span className={styles.nicoleColor}>Nicole</span>. It's so nice
Expand All @@ -32,14 +32,15 @@ const Home = () => {
<img src={Computer} alt="comp" />
<h3 className={styles.techNames}>💙 Tech I love 💙</h3>
<section className={styles.techBox}>
<Tech one="HTML5" two="CSS3" three="Javascript" four="React" />
<Tech one="HTML5" two="CSS3" three="Javascript" four="React" five="Vue.js" />
<Tech
one="Node.js"
two="Express.js"
three="Material-UI"
four="TailwindCSS"
one="Next.js"
two="Node.js"
three="Express.js"
four="Material-UI"
five="TailwindCSS"
/>
<Tech one="Redux" two="Supertest" three="Jest" four="Git/GitHub" />
<Tech one="Sass" two="Supertest" three="Jest" four="Git/GitHub" five="SQL" />
</section>

{/* <GifList gifs={gifs} loading={loading} /> */}
Expand All @@ -59,7 +60,7 @@ const styles = {
nicoleColor: 'text-green-400 dark:text-blue-400 text-lg',
techNames: 'text-lg font-Poppins text-gray-600 dark:text-gray-300 mt-4',
techBox:
'grid grid-flow-row grid-cols-3 grid-rows-1 gap-10 sm:gap-2 border-2 my-2 rounded border-black ring-2 ring-green-400 bg-gradient-to-r from-blue-300 to-green-300 font-Pt dark:font-Pt p-2 text-gray-600 dark:text-white dark:ring-blue-400',
'grid grid-flow-row grid-cols-3 grid-rows-1 gap-10 sm:gap-4 border-2 my-2 rounded border-black ring-2 ring-green-400 bg-gradient-to-r from-blue-300 to-green-300 font-Pt dark:font-Pt p-2 text-gray-600 dark:text-gray-600 dark:ring-blue-400',
};

export default Home;

0 comments on commit acf5442

Please sign in to comment.