-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.vue
35 lines (31 loc) · 1.07 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<template>
<div class="relative text-slate-200 bg-[#0d0b17]">
<Head lang="en">
<Title>Koel</Title>
<Meta name="description" content="Music streaming server that works" />
<Meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta charset="utf-8" />
<Meta http-equiv="X-UA-Compatible" content="IE=edge" />
<Link rel="preconnect" href="https://fonts.googleapis.com" />
<Link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<Link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" />
<Link rel="author" content="Phan An, [email protected]" />
</Head>
<MainHeader />
<div class="relative -top-[65px]">
<WithTopGlow>
<Jumbotron />
</WithTopGlow>
</div>
<WithTopGlow class="-top-[780px]">
<div class="space-y-64 py-24 border-t border-white/10">
<Features />
<MobileApps />
<KoelPlus />
</div>
</WithTopGlow>
<MainFooter />
</div>
</template>
<script setup lang="ts">
</script>