mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-22 02:23:57 +00:00
feat: credits page
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
<script lang="ts">
|
||||
import NavHost from "$lib/components/molecules/NavHost.svelte";
|
||||
import Wave from '$lib/components/atoms/Wave.svelte';
|
||||
|
||||
import '../app.css';
|
||||
</script>
|
||||
|
||||
@@ -20,4 +18,3 @@
|
||||
|
||||
<NavHost/>
|
||||
<slot />
|
||||
<Wave />
|
||||
@@ -2,6 +2,7 @@
|
||||
import HeroImage from '$lib/components/atoms/HeroImage.svelte';
|
||||
import Home from '$lib/components/organisms/Home.svelte';
|
||||
import SocialHost from '$lib/components/molecules/SocialHost.svelte';
|
||||
import Wave from '$lib/components/atoms/Wave.svelte';
|
||||
</script>
|
||||
|
||||
<div class="wrapper">
|
||||
@@ -11,6 +12,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<SocialHost />
|
||||
<Wave />
|
||||
|
||||
<style>
|
||||
.wrappezoid {
|
||||
|
||||
@@ -1,13 +1,20 @@
|
||||
<script>
|
||||
<script lang="ts">
|
||||
import ContributorHost from '$lib/components/molecules/ContributorHost.svelte';
|
||||
let peoples = [
|
||||
"Ushie",
|
||||
"afnzmn",
|
||||
"baiorett",
|
||||
"PickleNik",
|
||||
]
|
||||
|
||||
</script>
|
||||
|
||||
<div class="wrapper">
|
||||
<ContributorHost {peoples}></ContributorHost>
|
||||
</div>
|
||||
<div class="wrapper contrib-grid">
|
||||
<ContributorHost repo="cli"/>
|
||||
<ContributorHost repo="patcher"/>
|
||||
<ContributorHost repo="patches"/>
|
||||
<ContributorHost repo="integrations"/>
|
||||
<ContributorHost repo="manager"/>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.contrib-grid {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user