Skip to content

Commit

Permalink
Merge pull request #19 from untalsanders/develop
Browse files Browse the repository at this point in the history
fix portfolio and resume url
  • Loading branch information
untalsanders authored Mar 26, 2024
2 parents 949e4ae + 7025c56 commit 50ec8a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import { Link } from 'react-router-dom'
export function Navbar() {
return (
<nav className={styles.Navbar}>
<Link to={``}>Home</Link>
<Link to={`about`}>About</Link>
<Link to={`portfolio`}>Portfolio</Link>
<Link to={`blog`}>Blog</Link>
<Link to={`contact`}>Contact</Link>
<Link to="">Home</Link>
<Link to="about">About</Link>
<Link to="portfolio">Portfolio</Link>
<Link to="blog">Blog</Link>
<Link to="contact">Contact</Link>
</nav>
)
}
4 changes: 2 additions & 2 deletions src/pages/about.page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export const AboutPage = () => (
<span>Developer and Software Engineer</span>
</div>
<div className={styles.About__Primary_blockOne_Buttons}>
<Link to={`portfolio`} className="link-button" >
<Link to={`../portfolio`} className="link-button" >
Got a project?
</Link>
<Link to={`resume`} className="link-button link-button-inverse" >
<Link to={`../resume`} className="link-button link-button-inverse" >
Download CV
</Link>
</div>
Expand Down

0 comments on commit 50ec8a3

Please sign in to comment.