Skip to content

Commit

Permalink
fix: use svg instead, fix relative pathing not working upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
vapidinfinity committed Oct 27, 2024
1 parent 9c01ff9 commit 8fb7b9f
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions src/components/navigation/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
---
const currentYear = new Date().getFullYear();
import { Image } from "astro:assets";
import WhiskyWineLogo from "../../images/svg/light/Powered By WhiskyWine.light.svg";
---

<footer class="footer">
<div class="footer-logos">
<a href="https://getwhisky.app" target="_blank">
<img
src="src/images/svg/light/Powered By WhiskyWine.light.svg"
alt="Powered By WhiskyWine"
loading="eager"
class="platform-card"
/>
</a>
</div>
<a href="https://getwhisky.app" target="_blank">
<Image src={WhiskyWineLogo} alt="Powered By WhiskyWine" loading="eager" class="platform-card" />
</a>
</div>

<p class="copyright">
&copy; {currentYear} Mythic. All rights reserved.
Expand Down

0 comments on commit 8fb7b9f

Please sign in to comment.