1+ ---
2+ import Layout from " ../layouts/Layout.astro" ;
3+ import Button from " ../components/Button.astro" ;
4+ import Container from " ../components/Container.astro" ;
5+ import Sticker from " ../components/Sticker.astro"
6+ ---
7+
8+ <Layout title =" Downloads" >
9+ <section class =" flex flex-col w-full gap-4" >
10+ <p class =" text-4xl text-bold" >Downloads</p >
11+ <p class =" text-md max-w-3xl" >
12+ Here you can download Selaura Client, from our locally provided CDN's below.
13+ </p >
14+ <br />
15+ <Container >
16+ <div class =" flex gap-4 flex-row justify-between" >
17+ <div class =" flex flex-row gap-2 items-center" >
18+ <i class =" fa-brands fa-windows text-xl" ></i >
19+ <p class =" text-xl text-bold" >Windows 10/11 (x64 bit)</p >
20+ <Sticker type =" alpha" ></Sticker >
21+ </div >
22+ <Button text =" Download" href =" https://cdn.selauraclient.com/windows/Selaura.dll" ></Button >
23+ </div >
24+ </Container >
25+ <Container >
26+ <div class =" flex gap-4 flex-row justify-between" >
27+ <div class =" flex flex-row gap-2 items-center" >
28+ <i class =" fa-brands fa-android text-xl" ></i >
29+ <p class =" text-xl text-bold" >Android 7+ (ARM64)</p >
30+ <Sticker type =" alpha" ></Sticker >
31+ </div >
32+ <Button text =" Download" href =" https://cdn.selauraclient.com/android/libSelaura.so" ></Button >
33+ </div >
34+ </Container >
35+ <Container >
36+ <div class =" flex gap-4 flex-row justify-between" >
37+ <div class =" flex flex-row gap-2 items-center" >
38+ <i class =" fa-brands fa-linux text-xl" ></i >
39+ <p class =" text-xl text-bold" >Linux (mcpelauncher-linux)</p >
40+ <Sticker type =" alpha" ></Sticker >
41+ </div >
42+ <Button text =" Download" href =" https://cdn.selauraclient.com/linux/libSelaura.so" ></Button >
43+ </div >
44+ </Container >
45+ <div class =" h-10" ></div >
46+ <p class =" text-4xl text-bold" >Additional Resources</p >
47+ <p class =" text-md max-w-3xl" >
48+ Look at these for extra resources, or direct downloads to binaries for Selaura Client.
49+ </p >
50+ <div class =" flex flex-row gap-4" >
51+ <Button text =" Source Code" icon =" notes" iconPosition =" left" href =" /github/" target =" _blank" />
52+ <Button text =" Scripting Documentation" icon =" external-link" iconPosition =" left" href =" https://docs.selauraclient.com" target =" _blank" />
53+ </div >
54+ </section >
55+ </Layout >
0 commit comments