Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/pages/en/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ import Button from "../../components/Button.astro";

<FluidLayout>
<MainVisual />
<section class="announcement">
<h2 class="section-title">
<span class="accent">Go Conference 2025</span> has concluded
</h2>
<p>
Thank you to all speakers, participants, sponsors, and organizers for your
contributions!
</p>
<p>
Session archives that are available for publication will be released on
each session's page.
</p>
</section>
<section class="section event">
<h2 class="section-title">
What is <span class="accent">Go Conference</span>?
Expand Down Expand Up @@ -57,7 +70,6 @@ import Button from "../../components/Button.astro";
<h2 class="section-title">
<span class="accent">W</span>orkshop
</h2>
<div>You can register for workshops via connpass.</div>
<div class="workshop-cards">
<div class="workshop-card">
<h4>Workshop <span class="accent">Part 1</span></h4>
Expand Down
12 changes: 11 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ import Button from "../components/Button.astro";

<FluidLayout>
<MainVisual />
<section class="announcement">
<h2 class="section-title">
<span class="accent">Go Conference 2025</span>は終了いたしました
</h2>
<p>
ご登壇、ご参加、ご協力いただいたスポンサー、運営の皆さんありがとうございました!
</p>
<p>
公開可能なセッションのアーカイブは、各セッションのページにて順次公開予定です。
</p>
</section>
<section class="section event">
<h2 class="section-title">
<span class="accent">Go Conference</span>とは
Expand Down Expand Up @@ -45,7 +56,6 @@ import Button from "../components/Button.astro";
<h2 class="section-title">
<span class="accent">ワ</span>ークショップ
</h2>
<div>ワークショップはconnpassより参加登録ができます。</div>
<div class="workshop-cards">
<div class="workshop-card">
<h4>Workshop <span class="accent">Part 1</span></h4>
Expand Down
6 changes: 6 additions & 0 deletions src/styles/top-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
}
}

.announcement {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.event-table {
margin: 40px auto 0;

Expand Down