mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-12-26 15:00:26 +05:30
95 lines
1.7 KiB
Svelte
95 lines
1.7 KiB
Svelte
<script>
|
|
import IconDiscord from "~icons/simple-icons/discord";
|
|
import IconMatrix from "~icons/simple-icons/matrix";
|
|
import IconGitHub from "~icons/simple-icons/github";
|
|
import IconSignal from "~icons/fa6-solid/signal";
|
|
import * as global from "../i18n/_global.json";
|
|
import { t } from "$lib/translations";
|
|
import { page } from "$app/stores";
|
|
</script>
|
|
|
|
<footer>
|
|
{#if $page.url.pathname === "/"}
|
|
<a
|
|
href="https://www.abuseipdb.com/user/82331"
|
|
title="AbuseIPDB is an IP address blacklist for webmasters and sysadmins to report IP addresses engaging in abusive behavior on their networks"
|
|
>
|
|
<img
|
|
src="https://www.abuseipdb.com/contributor/82331.svg"
|
|
alt="AbuseIPDB Contributor Badge"
|
|
/>
|
|
</a>
|
|
{/if}
|
|
<hr />
|
|
<div class="content">
|
|
<span>{$t("common.FOOTER_COPYRIGHT")}</span>
|
|
|
|
<div class="links">
|
|
<a href={global.MATRIX_INVITE}>
|
|
<IconMatrix />
|
|
</a>
|
|
<a href={global.DISCORD_INVITE}>
|
|
<IconDiscord />
|
|
</a>
|
|
<a href={global.GITHUB}>
|
|
<IconGitHub />
|
|
</a>
|
|
<a href={global.STATUS}>
|
|
<IconSignal />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<style>
|
|
footer {
|
|
padding: 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 20px;
|
|
position: sticky;
|
|
top: 100vh;
|
|
width: calc(100vw - 2rem);
|
|
}
|
|
|
|
hr {
|
|
color: var(--accent-primary);
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
div.content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
div.links {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.links a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
div.links {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 270px;
|
|
background: var(--accent-primary);
|
|
padding: 0.5rem;
|
|
border-radius: 10px;
|
|
}
|
|
</style>
|