Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Footer Tweaks #12

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,28 @@
<h2>Stuff</h2>
<!-- TODO: either unfinished or blocked until launch
<a href="#">Blog</a>
<a href="#">Support</a>
<a href="#">Help</a>
<a href="/downloads">Download centre</a>
<a href="/why-upryzing">Why upryzing?</a>
<a href="/why-upryzing">Why Upryzing?</a>
<a href="/about">Our team</a>
<a href="#">Support us</a>
-->
-->
<a href="/sitemap-index.xml">Sitemap</a>
<a href="/licenses">Licenses</a>
</section>
<!-- TODO: ditto
<section class="column">
<h2>Legalese</h2>
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Imo this should become "Legal". it's shorter :fefe

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on one hand "Legal" on its own is maybe a tiny bit boring?
on the other hand, True...

<!-- TODO: ditto
<a href="/tos">Terms of service</a>
<a href="/community-guidelines">Public server guidelines</a>
<a href="/privacy">Privacy policy</a>
<a href="/legal-summary">Too long, didn't read</a>
-->
<a href="/licenses">Licenses</a>
</section>
-->
<section class="column">
<h2>Socials</h2>
<a href="https://github.com/upryzing" rel="me">GitHub</a>
<a href="https://lea.pet/@upryzing">Upryzing on the Fediverse</a>
<a href="https://lea.pet/@upryzing">Fediverse (Mastodon)</a>
<a href="https://bsky.app/profile/upryzing.app">Bluesky</a>
<a href="https://discord.gg/Zst96h5ABV">Discord</a>
</section>
Expand All @@ -49,14 +49,14 @@
</footer>

<style>
/* TODO: merge the .column and .row utility classes onto it's own file */
/* TODO: merge the .column and .row utility classes and move it into its own file */
footer {
padding: 4rem 8vw 4rem 8vw;
width: 100%;
display: flex;
flex-direction: column;
background-color: var(--background-emphasis);
gap: 1rem;
gap: 4rem;

user-select: none;
-webkit-user-select: none;
Expand Down