Skip to content

Commit

Permalink
add friends to footer
Browse files Browse the repository at this point in the history
Signed-off-by: Hazel <[email protected]>
  • Loading branch information
hazelthatsme committed Aug 30, 2024
1 parent 4e6a931 commit 5e1f562
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/friends.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Friends: <a href="https://justwestofjune.com">justwestofjune.com</a>
13 changes: 11 additions & 2 deletions src/layouts/layout.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import "../styles/global.css"
import Badges from "../components/badges.astro";
import Friends from "../components/friends.astro";
const { title, description, tags } = Astro.props;
---

Expand Down Expand Up @@ -34,11 +35,14 @@ const { title, description, tags } = Astro.props;
<slot />
</main>
<footer>
<i>Favicon by <a href="https://github.com/dvrossen">DvRossen</a></i>

<div class="badges">
<Badges />
</div>

<div class="friends">
Favicon by <a href="https://github.com/dvrossen">DvRossen</a><br>
<Friends />
</div>
</footer>
</body>
</html>
Expand All @@ -53,4 +57,9 @@ const { title, description, tags } = Astro.props;
.badges img {
margin: 5px;
}

.friends {
margin-top: 1rem;
display: block;
}
</style>

0 comments on commit 5e1f562

Please sign in to comment.