Skip to content

Commit 0ae27dd

Browse files
authored
Merge pull request #1 from GoCon/feat/instant-page
2025年の GoConference の仮ページを実装しました
2 parents 1503475 + e219eb0 commit 0ae27dd

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

src/pages/index.astro

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,54 @@
22
import Layout from "../layouts/Layout.astro";
33
---
44

5+
<style>
6+
.container {
7+
display: flex;
8+
max-width: 100%;
9+
height: 20em;
10+
11+
align-items: center;
12+
justify-content: center;
13+
}
14+
15+
.card {
16+
padding: 8px;
17+
18+
background-color: #e6e6e6;
19+
border-radius: 4px;
20+
}
21+
</style>
22+
523
<Layout title="Go Conference 2025">
624
<main>
7-
<h1>Hello, world!</h1>
25+
<h1>GoConference2025</h1>
26+
<div style="display: flex; flex-wrap: wrap;">
27+
<span>GoConference2025 の公式ページになります</span>
28+
<span></span>
29+
</div>
30+
<div style="display: flex; flex-wrap: wrap;">
31+
<span>本ページは随時更新予定なのでご了承ください</span>
32+
</div>
33+
<div style="display: flex; flex-wrap: wrap;"></div>
34+
<div class="container">
35+
<div>
36+
<div class="card">
37+
<h3 style="margin: 0; padding: 8px;">
38+
現段階(2025/03/31)での情報になります
39+
</h3>
40+
<ul>
41+
<li>
42+
<span style="font-weight: bold">開催日時:</span> 2025年 9月 (日付に関しては未定です)
43+
</li>
44+
<li>
45+
<span style="font-weight: bold">CfP 募集期間:</span> 未定(随時Xアカウントおよび本ホームページで公表する予定です)
46+
</li>
47+
<li>
48+
<span style="font-weight: bold">スポンサー募集期間:</span> 未定(随時Xアカウントおよび本ホームページで公表する予定です)
49+
</li>
50+
</ul>
51+
</div>
52+
</div>
53+
</div>
854
</main>
955
</Layout>

0 commit comments

Comments
 (0)