mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-02 07:34:34 +02:00
20 lines
725 B
Svelte
20 lines
725 B
Svelte
<script>
|
|
import SocialButton from "../atoms/SocialButton.svelte";
|
|
</script>
|
|
|
|
<div class="social-host">
|
|
<SocialButton src="socials/github.svg" alt="GitHub" href="https://revanced.app/github"></SocialButton>
|
|
<SocialButton src="socials/discord.svg" alt="Discord" href="http://revanced.app/discord"></SocialButton>
|
|
<SocialButton src="socials/reddit.svg" alt="Reddit" href="https://revanced.app/reddit"></SocialButton>
|
|
<SocialButton src="socials/telegram.svg" alt="Telegram" href="https://revanced.app/telegram"></SocialButton>
|
|
</div>
|
|
|
|
<style>
|
|
.social-host {
|
|
justify-content: space-between;
|
|
position: absolute;
|
|
align-items: center;
|
|
bottom: 3rem;
|
|
left: 5rem;
|
|
}
|
|
</style> |