Skip to content

Commit c7c1e46

Browse files
feat: better looking page
1 parent 55bde95 commit c7c1e46

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

src/routes/+page.svelte

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,36 @@
2020
}, intervel);
2121
}
2222
23+
const installcmd = ". <(curl -Ls https://bit.ly/udroid-installer)"
24+
2325
onMount(() => {
2426
counter(10, data.count.count, 8);
2527
});
2628
</script>
2729

28-
<div class="dark:bg-[#070704] bg-[#EDEDDE]">
29-
<div class="flex flex-col h-screen items-center justify-center rounded-sm">
30-
<div class="bg-[#4e6638] p-6 rounded-xl">
30+
<div class="h-screen">
31+
<div class="flex flex-col h-[90%] items-center justify-center rounded-sm">
32+
<div class="p-6 rounded-xl">
3133
<a
3234
href="https://github.com/RandomCoderOrg/ubuntu-on-android"
3335
target="_blank"
3436
referrerpolicy="no-referrer"
35-
class="text-[#070704] dark:text-[#ededde] text-4xl hover:underline dark:decoration-[#EDEDDE] text-bold font-mono"
37+
class="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl"
3638
>UDROID Downloads</a
3739
>
38-
<p class="font-light text-center font-mono text-3xl text-[#070704] dark:text-[#ededde]">{finalText}</p>
40+
<p class="transition-all mt-4 font-light text-center font-mono text-3xl text-[#070704] dark:text-[#ededde]">{finalText}</p>
3941
</div>
42+
43+
<blockquote class="mt-6 border-l-2 pl-6 italic text-[#070704] dark:text-[#ededde]">
44+
Install udroid
45+
<code
46+
class="relative rounded bg-muted px-[0.3rem] py-[0.2rem] w-60 font-mono text-sm font-semibold"
47+
>
48+
{installcmd}
49+
</code>
50+
</blockquote>
4051
</div>
52+
<footer class="text-center w-full leading-7 [&:not(:first-child)]:mt-6 text-sm">
53+
<a href="https://github.com/RandomCoderOrg/ubuntu-on-android/" target="_blank" rel="noopener noreferrer">RandomCoderOrg/ubuntu-on-android</a>
54+
</footer>
4155
</div>

0 commit comments

Comments
 (0)