feat: update footer attribution

This commit is contained in:
Ayo Ayco 2025-04-12 19:14:36 +02:00
parent 55f9174380
commit deb29de533

View file

@ -31,31 +31,36 @@ const year = new Date().getFullYear()
} }
</ul> </ul>
<p> <p>
&#169; 2022-{year} Copyright &#169; 2022-{year}
<a href="/">Ayo Ayco</a>. This website <a <a href="/">Ayo Ayco</a>, but I don't actually know what copyright means, I
href="https://ayos.blog/stopped-tracking-on-my-sites" just copied how others do their footer. It probably doesn't matter? This
website <a href="https://ayos.blog/stopped-tracking-on-my-sites"
>does not track users</a >does not track users</a
>. See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>. >. See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>.
</p> </p>
</footer> </footer>
<style> <style>
a {
color: var(--text-color-dark);
&:hover {
color: var(--color-brand-blue-5);
}
@media (prefers-color-scheme: dark) {
color: var(--text-color-light);
&:hover {
color: var(--color-brand-complement);
}
}
}
footer { footer {
margin-top: 2em; margin-top: 2em;
padding: 0; padding: 0;
p {
font-size: var(--font-size-sm);
}
a {
color: var(--text-color-dark);
&:hover {
color: var(--color-brand-blue-5);
}
@media (prefers-color-scheme: dark) {
color: var(--text-color-light);
&:hover {
color: var(--color-brand-complement);
}
}
}
ul { ul {
list-style: none; list-style: none;