初始化 Uranium 官方网站
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
---
|
||||
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={siteConfig.repository} external description="查看源代码、提交记录与维护进度。" />
|
||||
</div>
|
||||
</header>
|
||||
</Layout>
|
||||
Reference in New Issue
Block a user