diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-06 18:21:55 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-06 18:21:55 +0100 |
commit | 90b3a901f3288033cf491192741badc22293d86e (patch) | |
tree | 9ba17a00174b997cc0aa43359c457f4f2c4944d4 /apps/website/src/pages | |
parent | aad63445401ca710bb492928c39f0b2fc1cb4198 (diff) | |
download | Nexus-90b3a901f3288033cf491192741badc22293d86e.tar.gz Nexus-90b3a901f3288033cf491192741badc22293d86e.tar.bz2 Nexus-90b3a901f3288033cf491192741badc22293d86e.zip |
OneConfig Download page
Diffstat (limited to 'apps/website/src/pages')
-rw-r--r-- | apps/website/src/pages/projects/oneconfig/download.astro | 61 | ||||
-rw-r--r-- | apps/website/src/pages/projects/oneconfig/index.astro (renamed from apps/website/src/pages/projects/oneconfig.astro) | 0 |
2 files changed, 61 insertions, 0 deletions
diff --git a/apps/website/src/pages/projects/oneconfig/download.astro b/apps/website/src/pages/projects/oneconfig/download.astro new file mode 100644 index 0000000..b8aee51 --- /dev/null +++ b/apps/website/src/pages/projects/oneconfig/download.astro @@ -0,0 +1,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> + + <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> diff --git a/apps/website/src/pages/projects/oneconfig.astro b/apps/website/src/pages/projects/oneconfig/index.astro index fcb1c7b..fcb1c7b 100644 --- a/apps/website/src/pages/projects/oneconfig.astro +++ b/apps/website/src/pages/projects/oneconfig/index.astro |