Skip to content

Commit 5cbc2c9

Browse files
committed
sync links
1 parent 71f52ef commit 5cbc2c9

File tree

5 files changed

+107
-29
lines changed

5 files changed

+107
-29
lines changed

src/components/Footer/Footer.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,6 @@ const Footer = () => {
112112
<FaYoutube aria-label='YouTube' className="localIcon" />
113113
</a>
114114
)}
115-
{socialsData.stackOverflow && (
116-
<a
117-
href={socialsData.stackOverflow}
118-
target='_blank'
119-
rel='noreferrer'
120-
className='socialIcon'
121-
>
122-
<FaStackOverflow aria-label='Stack Overflow' className="localIcon" />
123-
</a>
124-
)}
125115
{socialsData.codepen && (
126116
<a
127117
href={socialsData.codepen}

src/components/Landing/Landing.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@
4040
justify-content: flex-start;
4141
}
4242

43-
43+
.landing--social2 {
44+
display: none;
45+
}
4446

4547
.lcl--content {
46-
margin: 3rem;
48+
/* margin: 3rem; */
4749
width: 100%;
4850
display: flex;
4951
align-items: center;
@@ -61,6 +63,16 @@
6163
transform: scale(1.2);
6264
}
6365

66+
.landing--social2 {
67+
font-size: 35px;
68+
margin: 0 1rem;
69+
transition: transform 0.5s;
70+
}
71+
72+
.landing--social2:hover {
73+
transform: scale(1.2);
74+
}
75+
6476
.landing--container-right {
6577
flex: 65%;
6678
height: 100%;
@@ -182,6 +194,10 @@
182194
.landing--social {
183195
display: none;
184196
}
197+
198+
.landing--social2 {
199+
display: inline-flex;
200+
}
185201
.landing--container-right {
186202
box-sizing: border-box;
187203
padding: 0 2rem;

src/components/Landing/Landing.js

Lines changed: 84 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,6 @@ function Landing() {
7777
/>
7878
</a>
7979
)}
80-
{socialsData.codepen && (
81-
<a
82-
href={socialsData.stackOverflow}
83-
target='_blank'
84-
rel='noreferrer'
85-
>
86-
<FaStackOverflow
87-
className='landing--social'
88-
style={{ color: theme.secondary70 }}
89-
aria-label='stackOverflow'
90-
/>
91-
</a>
92-
)}
9380
{socialsData.codepen && (
9481
<a
9582
href={socialsData.replit}
@@ -135,9 +122,91 @@ function Landing() {
135122
className='lcr--content'
136123
style={{ color: theme.tertiary }}
137124
>
138-
<h6>{headerData.title}</h6>
125+
139126
<br />
127+
140128
<h1>{headerData.name}</h1>
129+
<div className='lcl--content2'>
130+
{socialsData.github && (
131+
<a
132+
href={socialsData.github}
133+
target='_blank'
134+
rel='noreferrer'
135+
>
136+
<FaGithub
137+
className='landing--social2'
138+
style={{ color: theme.secondary70 }}
139+
aria-label='GitHub'
140+
/>
141+
</a>
142+
)}
143+
{socialsData.twitter && (
144+
<a
145+
href={socialsData.twitter}
146+
target='_blank'
147+
rel='noreferrer'
148+
>
149+
<FaTwitter
150+
className='landing--social2'
151+
style={{ color: theme.secondary70 }}
152+
aria-label='Twitter'
153+
/>
154+
</a>
155+
)}
156+
{socialsData.linkedIn && (
157+
<a
158+
href={socialsData.linkedIn}
159+
target='_blank'
160+
rel='noreferrer'
161+
>
162+
<FaLinkedin
163+
className='landing--social2'
164+
style={{ color: theme.secondary70 }}
165+
aria-label='LinkedIn'
166+
/>
167+
</a>
168+
)}
169+
{socialsData.youtube && (
170+
<a
171+
href={socialsData.youtube}
172+
target='_blank'
173+
rel='noreferrer'
174+
>
175+
<FaYoutube
176+
className='landing--social2'
177+
style={{ color: theme.secondary70 }}
178+
aria-label='YouTube'
179+
/>
180+
</a>
181+
)}
182+
{socialsData.codepen && (
183+
<a
184+
href={socialsData.replit}
185+
target='_blank'
186+
rel='noreferrer'
187+
>
188+
<FaCodepen
189+
className='landing--social2'
190+
style={{ color: theme.secondary70 }}
191+
aria-label='CodePen'
192+
/>
193+
</a>
194+
)}
195+
{socialsData.replit && (
196+
<a
197+
href={socialsData.replit}
198+
target='_blank'
199+
rel='noreferrer'
200+
>
201+
<SiReplit
202+
className='landing--social2'
203+
style={{ color: theme.secondary70 }}
204+
aria-label='Replit'
205+
/>
206+
</a>
207+
)}
208+
</div>
209+
141210
<br />
142211
<p>{headerData.description}</p>
143212

@@ -180,6 +249,7 @@ function Landing() {
180249
</div>
181250
</div>
182251
</div>
252+
183253
);
184254
}
185255

src/components/Skills/Skills.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ function Skills() {
1717
}
1818

1919
return (
20+
2021
<div className="skills">
22+
<div style={{ backgroundColor: theme.secondary, height: '1rem' }}> </div>
2123

2224
<div className="skillsHeader">
2325
<div style={{ backgroundColor: theme.secondary50, height: '1rem' }}> </div>

src/pages/Project/ProjectPage.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function ProjectPage() {
1919
})
2020
const useStyles = makeStyles((t) => ({
2121
search: {
22-
color: theme.tertiary,
22+
color: theme.secondary70,
2323
width: '40%',
2424
height: '2.75rem',
2525
outline: 'none',
@@ -39,7 +39,7 @@ function ProjectPage() {
3939
},
4040
},
4141
home: {
42-
color: theme.secondary,
42+
color: theme.secondary70,
4343
position: 'absolute',
4444
top: 25,
4545
left: 25,
@@ -71,7 +71,7 @@ function ProjectPage() {
7171
<Link to="/">
7272
<AiOutlineHome className={classes.home} />
7373
</Link>
74-
<h1 style={{ color: theme.secondary }}>Projects</h1>
74+
<h1 style={{ color: theme.secondary70 }}>Projects</h1>
7575
</div>
7676
<div className="projectPage-container">
7777
<div className="projectPage-search">

0 commit comments

Comments
 (0)