43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
---
|
|
import Layout from "@/layouts/Layout.astro";
|
|
import SoftwarePreview from "@/components/SoftwarePreview.astro";
|
|
import { siteConfig } from "@/config";
|
|
---
|
|
|
|
<Layout title="下载" description="选择要下载的 Uranium 服务端构建。" canonical="/downloads/">
|
|
<header class="mx-auto flex max-w-4xl flex-col items-center gap-2 px-4 pt-32 pb-16 lg:pt-28 lg:pb-12">
|
|
<h1 class="text-4xl leading-normal font-medium lg:text-5xl lg:leading-normal">下载</h1>
|
|
<p class="mb-6 text-center text-xl">选择你需要的 Uranium 构建来源。</p>
|
|
|
|
<h2 class="mt-4 text-center text-2xl font-medium">服务端软件</h2>
|
|
<div class="grid gap-2 px-2 md:grid-cols-2 xl:gap-4">
|
|
<SoftwarePreview
|
|
name="Uranium"
|
|
href="/downloads/uranium"
|
|
status="推荐"
|
|
description="面向 Minecraft 1.7.10 的 Forge + Bukkit 混合服务端。"
|
|
/>
|
|
<SoftwarePreview
|
|
name="开发构建"
|
|
iconText="CI"
|
|
href={siteConfig.actions}
|
|
external
|
|
description="查看持续集成构建。开发构建适合测试与问题验证。"
|
|
/>
|
|
</div>
|
|
|
|
<h2 class="mt-4 text-center text-2xl font-medium">项目资源</h2>
|
|
<div class="grid gap-2 px-2 md:grid-cols-2 xl:gap-4">
|
|
<SoftwarePreview name="快速开始" iconText="?" href="/guide" description="准备 JDK 8、安装发行包并完成首次启动。" />
|
|
<SoftwarePreview
|
|
name="构建资源管理器"
|
|
iconText="#"
|
|
href="/downloads/uranium/builds"
|
|
description="浏览稳定版、开发版、提交记录与构建产物。"
|
|
/>
|
|
<SoftwarePreview name="源代码" iconText="</>" href={siteConfig.repository} external description="查看源代码、提交记录与维护进度。" />
|
|
<SoftwarePreview name="项目介绍" iconText="i" href="/about" description="了解 UraniumMC 的定位、维护重点和项目边界。" />
|
|
</div>
|
|
</header>
|
|
</Layout>
|