2022-06-18 00:22:07 +05:30
< script >
2022-06-24 21:32:23 +05:30
import { page } from "$app/stores";
2022-06-18 00:22:07 +05:30
< / script >
< footer >
2022-06-24 21:32:23 +05:30
{ #if $page . url . pathname === "/" }
2022-08-04 22:58:05 +05:30
< div class = "badge" >
2022-06-24 21:32:23 +05:30
< 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"
2022-08-04 21:20:02 +05:30
style="width: fit-content; padding: 1rem;"
2022-06-24 21:32:23 +05:30
>
< img
src="https://www.abuseipdb.com/contributor/82331.svg"
alt="AbuseIPDB Contributor Badge"
/>
< / a >
2022-08-04 22:58:05 +05:30
< / div >
2022-06-24 21:32:23 +05:30
{ /if }
2022-06-18 21:56:58 +05:30
< div class = "content" >
2022-08-04 22:58:05 +05:30
< span > © 2021 - present, Project Segfault < a href = "/team" > team< / a > < / span >
2022-08-04 21:20:02 +05:30
< span > Made with < a href = "https://kit.svelte.dev/" > SvelteKit< / a > and released under the < a href = "https://opensource.org/licenses/MIT/" > MIT license< / a > .< / span >
2022-06-18 21:56:58 +05:30
< / div >
2022-06-18 00:22:07 +05:30
< / footer >
< style >
2022-06-18 21:56:58 +05:30
footer {
display: flex;
flex-direction: column;
font-size: 20px;
2022-06-24 21:32:23 +05:30
position: sticky;
top: 100vh;
2022-06-18 21:56:58 +05:30
}
2022-06-18 00:22:07 +05:30
2022-06-18 21:56:58 +05:30
div.content {
2022-07-06 18:40:25 +05:30
display: flex;
align-items: center;
2022-08-04 21:20:02 +05:30
flex-direction: column;
border-top: 1px solid var(--grey);
padding: .5rem;
2022-06-18 21:56:58 +05:30
}
2022-06-18 00:22:07 +05:30
2022-08-04 21:20:02 +05:30
div.content > * {
color: var(--text);
font-size: 13px;
font-weight: 500;
text-align: center;
2022-06-18 21:56:58 +05:30
}
2022-06-24 21:32:23 +05:30
2022-08-04 22:58:05 +05:30
.badge {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
2022-06-24 21:32:23 +05:30
img {
width: 270px;
background: var(--accent-primary);
padding: 0.5rem;
border-radius: 10px;
}
2022-06-18 21:56:58 +05:30
< / style >