mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-02 07:34:34 +02:00
29 lines
690 B
Svelte
29 lines
690 B
Svelte
<script>
|
|
import Button from '$lib/components/atoms/Button.svelte';
|
|
import IndexHeroTitle from '../atoms/IndexHeroTitle.svelte';
|
|
</script>
|
|
|
|
<section class="hero">
|
|
<div class="hero-text">
|
|
<!-- <img class="hero-img" src="/manager.png" alt="Screenshot of ReVanced Manager" /> -->
|
|
<IndexHeroTitle></IndexHeroTitle>
|
|
<h2>
|
|
An extensible framework for<br />
|
|
building application mods.
|
|
</h2>
|
|
<Button kind="primary" href="/download">Download</Button>
|
|
<Button href="/docs">Read The Docs</Button>
|
|
</div>
|
|
</section>
|
|
|
|
<style>
|
|
.hero-text {
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: 6.5rem;
|
|
letter-spacing: -0.04em;
|
|
}
|
|
</style>
|