aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/pages/projects/oneconfig/download.astro
blob: 07279babedb07fffd55225fe2aeb978ebf31fcd8 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
import Button from '@components/base/Button.astro';
import Header from '@components/base/Header.astro';
import Paragraph from '@components/base/Paragraph.astro';
import Section from '@components/base/Section.astro';
import configConst from '@config';
import Layout from '@layouts/Layout.astro';
---

<Layout title="Download OneConfig" description="Download OneConfig, our configuration library for Minecraft">

	<Section wrapperClass="mt-36 -mb-28">
		<div class="text-navy-peony flex flex-col gap-y-2">
			<Header>
				OneConfig Download
			</Header>
			<Paragraph>
				Thank you for your interest in OneConfig! As OneConfig is primarily a library for other mods, installing OneConfig can be done in multiple ways.
			</Paragraph>
		</div>
	</Section>

	<Section wFull maxWidth="1024px" wrapperClass="bg-blue-75" class="py-8">
		<div slot="left" class="flex flex-col gap-y-2">
			<Header class="text-blue-500">SkyClient</Header>
			<Paragraph class="text-navy-peony whitespace-pre-line">
				<b>This is the easiest way</b> for installing OneConfig with no experience in Forge or modding.

				SkyClient is an open-source Forge mod installer which installs various mods that include OneConfig for you.

				All you need to do is select the mods you want and click install, and OneConfig should be right there!
			</Paragraph>
			<div class="flex flex-row max-md:justify-center">
				<Button size="sm" iconLeft="link-external" style="primary" href={configConst.socials.skyclient}>SkyClient</Button>
			</div>
		</div>
		<div slot="right">
			<img class="rounded-lg w-full max-md:max-w-screen-sm lg:max-w-none lg:w-[480px]" src="/media/oneconfig/skyclient.png" alt="A screenshot of skyclient">
		</div>
	</Section>

	<Section wFull maxWidth="1024px" wrapperClass="-mt-32 mb-12" class="py-8">
		<div slot="left" class="flex flex-col gap-y-2">
			<Header class="text-blue-500">Mods</Header>
			<Paragraph class="text-navy-peony whitespace-pre-line">If you already have a Forge installation, you can simply download any mod that includes OneConfig. Such mods include:

				• Hytils Reborn
				• Chatting
				• Any Poly-Series mod (e.g PolyTime, PolyBlur)
				• And more!
			</Paragraph>
			<div class="flex flex-row max-md:justify-center">
				<Button size="sm" iconLeft="link-external" style="primary" href="/mods">Discover Mods</Button>
			</div>
		</div>
		<div slot="right">
			<img class="rounded-lg w-full max-md:max-w-screen-sm lg:max-w-none lg:w-[480px]" src="/media/oneconfig/page_media_4.png" alt="A screenshot of skyclient">
		</div>
	</Section>

</Layout>