Skip to content

Commit 39de35a

Browse files
committed
fix: update footer background color for improved aesthetics
1 parent b439642 commit 39de35a

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

src/components/Footer.astro

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,30 @@
22
const currentYear = new Date().getFullYear();
33
---
44

5-
<footer class="footer footer-center p-10 bg-base-200 text-base-content">
5+
<footer class="footer footer-center p-10 bg-base-100 text-base-content">
66
<nav class="grid grid-flow-col gap-4">
77
<a href="/plans" class="link link-hover">Plans</a>
88
<a href="/models" class="link link-hover">Models</a>
99
<a href="/tools" class="link link-hover">Tools</a>
1010
<a href="/compare" class="link link-hover">Compare</a>
1111
<a href="/community" class="link link-hover">Community</a>
12+
<a href="https://github.com/IrvanFza/mycodingplan" class="link link-hover">GitHub</a>
1213
<a href="/privacy" class="link link-hover">Privacy</a>
1314
</nav>
14-
15-
<nav>
16-
<div class="grid grid-flow-col gap-4">
17-
<a href="https://github.com/IrvanFza/mycodingplan" target="_blank" rel="noopener noreferrer" class="link link-hover">
18-
GitHub
19-
</a>
20-
</div>
21-
</nav>
22-
15+
2316
<aside>
2417
<p class="text-sm">
25-
Built with <a href="https://astro.build" target="_blank" rel="noopener noreferrer" class="link">Astro</a> ·
26-
MIT License ·
27-
© {currentYear} MyCodingPlan
18+
Built with ❤️ using <a
19+
href="https://astro.build"
20+
target="_blank"
21+
rel="noopener noreferrer"
22+
class="link">Astro</a
23+
> ·
24+
<a
25+
href="https://github.com/IrvanFza/mycodingplan/blob/main/LICENSE"
26+
class="link link-hover">MIT License</a
27+
> · © {currentYear}
28+
<a href="/" class="link link-hover">MyCodingPlan</a>
2829
</p>
2930
</aside>
30-
</footer>
31+
</footer>

0 commit comments

Comments
 (0)