Skip to content

Commit

Permalink
Remove nav links.
Browse files Browse the repository at this point in the history
Remove information from footer.
Add link to title for easy navigation.
  • Loading branch information
Corofides committed Oct 30, 2023
1 parent 2f2c655 commit 4ed825d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/SiteFooter/SiteFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export default () => {
<footer className={"Footer"}>
<div className={"Content"}>
<a href={"#"}>Corofides</a>
<a href={"#"}>Information</a>
</div>
</footer>
)
Expand Down
13 changes: 6 additions & 7 deletions src/SiteHeader/SiteHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ export default () => {
return (
<header className={"Header"}>
<div className={"Content"}>
<h1 className={"SiteName"}>Shimmer</h1>
<nav>
<a href="#">Page 1</a>
<a href="#">Page 2</a>
<a href="#">Page 3</a>
<a href="#">Page 4</a>
</nav>
<h1 className={"SiteName"}>
<a href={"/Shimmer"}>
Shimmer
</a>
</h1>
<nav />
</div>
</header>
)
Expand Down
6 changes: 6 additions & 0 deletions src/SiteHeader/SiteHeader.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@

.SiteName {
margin: 0;

a {
color: $crystal-white;
text-decoration: none;
}

}

nav {
Expand Down

0 comments on commit 4ed825d

Please sign in to comment.