Skip to content

Commit

Permalink
Fix invalid profile CTA href
Browse files Browse the repository at this point in the history
  • Loading branch information
vallieres13 committed May 24, 2024
1 parent 954389d commit f9fa3ef
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ const Index = () => {
Entwickler & Designer in der heutzutage rapide wachsenden Internet-Wirtschaft.</p>
<div className="actions">
<Link to={'/about'} className="button primary">Über mich</Link>
<Link to={'/hire'} className="button">Profil</Link>
<Link to={'/profile'} className="button">Profil</Link>
</div>
<div className="separator"></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const Profile = () => {
</Helmet>
<div className="page-heading centered">
<div className="wrapper container">
<h1>Felix' Profil</h1>
<h1><span className="hideOnMobile">Felix' </span>Profil</h1>
<div className="underscore"></div>
</div>
<div className="line"></div>
Expand Down
6 changes: 5 additions & 1 deletion src/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ header {
}

.scroll {
margin: 6rem 0 3rem;
margin: 10rem 0 3rem;

p {
opacity: .5;
Expand Down Expand Up @@ -4116,6 +4116,10 @@ a.button {
}
}
}

.hideOnMobile {
display: none;
}
}

@media (max-width: 950px) {
Expand Down

0 comments on commit f9fa3ef

Please sign in to comment.