Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/browser tab #56

Merged
merged 4 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/About/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const About = () => {
Hello! 👋 My name is Rachel Soae Prather. I'm a Korean-American Software Engineer and Web Developer located outside Portland, Oregon.
</p>
<p>
My mission is to Build Technology that Builds Community. In service of that mission, I work and volunteer with ethical organizations whose missions I strongly believe in. I am currently associated with Rita XYZ, Lesbians Who Tech & Allies, Out In Tech, Girls Who Code, and PDXWIT.
My mission is to build technology that builds community. In service of that mission, I work and volunteer with ethical organizations whose missions I strongly believe in. I am currently associated with Rita XYZ, PDX Women In Tech, Girls Who Code, Out In Tech, and Lesbians Who Tech & Allies.
</p>
<p>
In my downtime, I can be found eating kimchi, searching for the best honey at the farmer's market, and making music with friends.
Expand Down
4 changes: 2 additions & 2 deletions src/components/Contact/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ const Contact = () => {
</a>
</div>
<div className='contact__socials-container'>
<a href='https://www.linkedin.com/in/rachel-soae-prather'>
<a href='https://www.linkedin.com/in/rachel-soae-prather' target='_blank'>
<img className='contact__social' src={linkedin} alt='LinkedIn' />
</a>
<a href='https://github.com/rachelsoae'>
<a href='https://github.com/rachelsoae' target='_blank'>
<img className='contact__social' src={github} alt='GitHub' />
</a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const Footer = () => {
return (
<section className='footer'>
<div className='footer__socials'>
<a href='https://www.linkedin.com/in/rachel-soae-prather'>
<a href='https://www.linkedin.com/in/rachel-soae-prather' target='_blank'>
<img className='footer__social' src={linkedin} alt='LinkedIn' />
</a>
<a href='https://github.com/rachelsoae'>
<a href='https://github.com/rachelsoae' target='_blank'>
<img className='footer__social' src={github} alt='GitHub' />
</a>
</div>
Expand Down
10 changes: 5 additions & 5 deletions src/components/Project/Project.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,22 @@ const Project = ({project}) => {
</div>
{name === 'Humor Me' ?
<div className='project__buttons-container'>
<a href={deployedLink}>
<a href={deployedLink} target='_blank'>
<button className='primary-button card__button'>View Live</button>
</a>
<a href={repoLinkFE}>
<a href={repoLinkFE} target='_blank'>
<button className='primary-button card__button'>GitHub (FE)</button>
</a>
<a href={repoLinkBE}>
<a href={repoLinkBE} target='_blank'>
<button className='primary-button card__button'>GitHub (BE)</button>
</a>
</div>
:
<div className='project__buttons-container'>
<a href={deployedLink}>
<a href={deployedLink} target='_blank'>
<button className='primary-button card__button'>View Live</button>
</a>
<a href={repoLink}>
<a href={repoLink} target='_blank'>
<button className='primary-button card__button'>GitHub</button>
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/components/TopNav/TopNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import {Link} from 'react-router-dom';
const TopNav = () => {
return (
<>
<Link to='/'>Home</Link>
<Link to='/about'>About</Link>
<Link to='/portfolio'>Portfolio</Link>
<Link to='/contact'>
<Link to='/' onClick={() => {window.scroll(0, 0)}}>Home</Link>
<Link to='/about' onClick={() => {window.scroll(0, 0)}}>About</Link>
<Link to='/portfolio' onClick={() => {window.scroll(0, 0)}}>Portfolio</Link>
<Link to='/contact' onClick={() => {window.scroll(0, 0)}}>
<button className='primary-button'>Contact Me</button>
</Link>
</>
Expand Down