Skip to content

Commit e8f569a

Browse files
committed
add new website Infinite Client
1 parent 7c933aa commit e8f569a

File tree

2 files changed

+78
-21
lines changed

2 files changed

+78
-21
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.section {
2+
min-height: 100vh;
3+
display: flex;
4+
flex-direction: column;
5+
justify-content: center;
6+
align-items: center;
7+
padding: 64px 24px;
8+
box-sizing: border-box;
9+
margin-bottom: 10vh;
10+
margin-left: 5vw;
11+
margin-right: 5vw;
12+
}
13+
14+
.title {
15+
min-height: 100vh;
16+
display: flex;
17+
flex-direction: column;
18+
justify-content: center;
19+
align-items: center;
20+
padding: 64px 24px;
21+
box-sizing: border-box;
22+
}
23+
.title h1 {
24+
font-size: 10vw !important;
25+
}
26+
h1 {
27+
font-size: 4rem;
28+
margin-bottom: 1rem;
29+
}
30+
31+
h2 {
32+
font-size: 2.5rem;
33+
margin-bottom: 2rem;
34+
}
35+
36+
p,
37+
li,
38+
a {
39+
font-size: 1.5rem;
40+
margin-bottom: 1.5rem;
41+
}
42+
43+
ul {
44+
padding-left: 2rem;
45+
}
46+
47+
a {
48+
color: #2563eb;
49+
text-decoration: underline;
50+
}
Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,44 @@
11
import React from "react";
2-
2+
import "./page.css";
33
export default function InfiniteClientPage() {
44
return (
5-
<h1 style={{ fontSize: "2.5rem", fontWeight: "bold", marginBottom: "1rem" }}>
6-
Infinite Client
7-
</h1>
8-
<p style={{ fontSize: "1.2rem", marginBottom: "2rem" }}>
9-
Infinite Clientは、Minecraftのプレイ体験を拡張するために開発された高機能なクライアントです。快適な操作性と多彩な機能を備え、初心者から上級者まで幅広いユーザーにおすすめです。
10-
</p>
11-
<section style={{ marginBottom: "2rem" }}>
12-
<h2 style={{ fontSize: "1.5rem", fontWeight: "bold", marginBottom: "0.5rem" }}>主な特徴</h2>
13-
<ul style={{ fontSize: "1.1rem", paddingLeft: "1.5rem" }}>
5+
<>
6+
<section className="title">
7+
<h1>Infinite Client</h1>
8+
</section>
9+
<section className="section">
10+
<p>
11+
Infinite
12+
Clientは、Minecraftのプレイ体験を拡張するために開発された高機能なクライアントです。
13+
</p>
14+
<p>
15+
快適な操作性と多彩な機能を備え、初心者から上級者まで幅広いユーザーにおすすめです。
16+
</p>
17+
</section>
18+
<section className="section">
19+
<h2>主な特徴</h2>
20+
<ul>
1421
<li>軽量かつ高速な動作</li>
1522
<li>スタイリッシュなUI</li>
1623
<li>統合されたショートカット機能</li>
1724
<li>サーバー対策強化</li>
1825
<li>最新バージョンへの迅速な対応</li>
1926
</ul>
2027
</section>
21-
<section style={{ marginBottom: "2rem" }}>
22-
<h2 style={{ fontSize: "1.5rem", fontWeight: "bold", marginBottom: "0.5rem" }}>ダウンロード</h2>
23-
<p>
24-
最新版のダウンロードは以下のリンクから行えます。
25-
</p>
26-
<a href="https://github.com/The-Infinitys/minecraft.infinite-client" target="_blank" style={{ color: "#1976d2", textDecoration: "underline", fontWeight: "bold" }}>
28+
<section className="section">
29+
<h2>ダウンロード</h2>
30+
<p>最新版のダウンロードは以下のリンクから行えます。</p>
31+
<a
32+
href="https://github.com/The-Infinitys/minecraft.infinite-client"
33+
target="_blank"
34+
>
2735
Infinite Client ダウンロードページ
2836
</a>
2937
</section>
30-
<section style={{ marginBottom: "2rem" }}>
31-
<h2 style={{ fontSize: "1.5rem", fontWeight: "bold", marginBottom: "0.5rem" }}>サポート・お問い合わせ</h2>
32-
<p>
33-
ご質問や不具合報告は、GitHubまたはDiscordよりご連絡ください。
34-
</p>
38+
<section className="section">
39+
<h2>サポート・お問い合わせ</h2>
40+
<p>ご質問や不具合報告は、GitHubまたはDiscordよりご連絡ください。</p>
3541
</section>
42+
</>
3643
);
3744
}

0 commit comments

Comments
 (0)