blob: a758fd18bad00d537f8d087887702f24501035af (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
---
import Header from '@components/base/Header.astro';
import Logo from '@components/logos/Logo.astro';
import Section from '@components/base/Section.astro';
import Button from '@components/base/Button.astro';
import Paragraph from '@components/base/Paragraph.astro';
import Layout from '../layouts/Layout.astro';
import { Code } from 'astro:components';
import Slider from '@components/base/Slider.astro';
import Card from '@components/base/Card.astro';
---
<Layout>
<Section class="flex-col justify-center items-center h-screen md:h-4/5 md:min-h-[600px]">
<Logo size={56} logo="oneconfig.minimal" />
<Header align="center" size="xxl" class="max-w-[600px]">
Meet <b>OneConfig</b>, the library designed for <b>everyone</b>.
</Header>
<div class="flex flex-row justify-center items-center gap-2">
<Button iconLeft="download" text="Download" />
<Button href="/documentation" iconLeft="book-open" style="secondary" text="Documentation" />
</div>
</Section>
<div class="flex flex-col gap-40">
<Section tabindex="0">
<div slot="left">
<Header size="lg" class="text-navy-peony">Forge is complicated</Header>
<Paragraph size="sm" class="text-gray-400 max-w-[500px]">Modding Minecraft has always been difficult, particularly with their configuration. Remembering all of the keybinds, commands; it just isn't intuitive.</Paragraph>
</div>
<div slot="right" class="w-3/4 md:w-auto">
<!-- TODO: make proper file names and alt text -->
<img src="/media/index/index1.svg" alt="stuff" />
</div>
</Section>
<Section tabindex="0" colReverse={false}>
<div slot="left" class="w-1/2 md:w-auto">
<img src="/media/index/index2.svg" alt="stuff" />
</div>
<div slot="right">
<Header size="lg" class="text-navy-peony">Clients are locked-down</Header>
<Paragraph size="sm" class="text-gray-400 max-w-[500px]">While they improve usability, they're slow to adopt new mods absent from the community and force unwanted features onto users to profit off of them.</Paragraph>
</div>
</Section>
<Section tabindex="0">
<div slot="left">
<Header size="lg" class="text-navy-peony">Best of both worlds</Header>
<Paragraph size="sm" class="text-gray-400 max-w-[500px]">OneConfig brings the simplicity of a client to the everyday user, gives advanced users and developers complete control over everything, while remaining free and open-source.</Paragraph>
</div>
<div slot="right" class="w-3/4 md:w-auto">
<img src="/media/index/index3.svg" alt="stuff" />
</div>
</Section>
<Section maxWidth="1120px" wrapperClass="bg-blue-100 -mb-40" wFull={false} class="md:py-20 gap-4 pr-2">
<div slot="left" class='pr-2'>
<Code code={`public class MyConfig {
@Switch(name = "Sub Switch", type = OptionType.SWITCH)
public static boolean subSwitch = false;
public MyConfig() {
super(new Mod("My Mod", ModType.UTIL_QOL), "config.json");
addDependency("subSwitch", () -> {
// Do stuff here
});
}
}`} lang={'java'}/>
</div>
<div slot="right" class="flex flex-col gap-2">
<Header size="xl" class="text-blue-500">Written for developers</Header>
<Paragraph class="text-blue-400 max-w-[500px]">
With Polyfrost's simple APIs, it's easy to integrate your mods into Polyfrost something
</Paragraph>
<div class="flex">
<Button href="/documentation" iconLeft="book-open" style="secondary" text="Documentation" />
</div>
</div>
</Section>
<Section maxWidth="1120px" wrapperClass="bg-blue-100" wFull={false} class="md:py-20 gap-4 pr-2">
<div slot="left" class="flex flex-col gap-2">
<Header size="xl" class="text-blue-500">Designed for users</Header>
<Paragraph class="text-blue-400 max-w-[500px]">
Lorem ipsum dolor sit amet consectetur. Viverra a pulvinar eu pharetra. Porta feugiat purus blandit mauris ipsum eu.
</Paragraph>
<div class="flex">
<Button iconLeft="download" style="secondary" text="Download" />
</div>
</div>
<div slot="right">
<!-- TODO: figure out non-arbitrary values -->
<img src="/media/index/index4.png" class="h-[285px] rounded-2xl" />
</div>
</Section>
<Section class="flex-col justify-center items-center h-screen md:h-4/5 md:min-h-[600px]">
<img src="/media/index/index5.png" class="h-[581px] rounded-2xl" />
<Header size="xl" align="center" class="w-96">A unified HUD editor</Header>
<Paragraph class="w-96 text-center text-gray-400">
Lorem ipsum dolor sit amet consectetur. Viverra a pulvinar eu pharetra. Porta feugiat purus blandit mauris ipsum eu.
</Paragraph>
</Section>
<Section tabindex="0" wrapperClass="bg-blue-100 -mb-40" class="md:py-20 gap-4 pr-2">
<div slot="left" class="flex flex-col gap-2">
<Header size="xl" class="text-blue-500">With many fabulous mods</Header>
<Paragraph class="text-blue-400 max-w-[500px]">
Discover a wide range of mods integrated with OneConfig to enhance your experience.
</Paragraph>
<div class="flex">
<Button iconLeft="link-external" text="Discover mods" />
</div>
</div>
</Section>
<Slider wrapperClass="-mb-40 pb-4">
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
</Slider>
<Slider dir="right">
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
<Card icon="chatting"/>
</Slider>
</div>
</Layout>
|