Skip to content

Commit e48ce95

Browse files
committed
Make footer link go to home page
1 parent 38b274f commit e48ce95

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Footer.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ const {
4242
</p>
4343
</div>
4444
<div style="flex: 1; min-width: 200px; margin: 20px; text-align: center; justify-content: center; align-items: center;">
45-
<div class="outerlync" style="margin-top: 0; margin-bottom: 10px; font-size: 20px;">
45+
<a href="/" class="outerlync" style="margin-top: 0; margin-bottom: 10px; font-size: 20px;">
4646
<img class="innerlync" alt="Altered Deal Logo" src="/img/altered-deal.png" style="width: 150px; margin-left: auto; margin-right: auto; text-align: center; justify-content: center; align-items: center; display: flex;">
47-
</div>
47+
</a>
4848
</div>
4949
</div>
5050
</footer>

src/layouts/Base.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const dir = isRtl(lang) ? "rtl" : "ltr";
7171
}
7272

7373
.outerlync {
74-
cursor: not-allowed;
74+
/* cursor: not-allowed; */
7575
display: inline-block;
7676
background: transparent;
7777
}
@@ -273,4 +273,4 @@ const dir = isRtl(lang) ? "rtl" : "ltr";
273273
<body>
274274
<slot />
275275
</body>
276-
</html>
276+
</html>

0 commit comments

Comments
 (0)