Skip to content

Commit 5069517

Browse files
authored
Merge pull request #109 from GoCon/feature/close_sponsorship
スポンサー募集期間終了のためページをクローズ
2 parents 46a887c + 0d52c69 commit 5069517

File tree

4 files changed

+4
-73
lines changed

4 files changed

+4
-73
lines changed

src/components/Footer.astro

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ const currentLocale = Astro.currentLocale || "ja";
2121
href={getRelativeLocaleUrl(currentLocale, "timetable")}
2222
class="text-link">Timetable</a
2323
>
24-
<a
25-
href={getRelativeLocaleUrl(currentLocale, "sponsorship")}
26-
class="text-link">Sponsorship</a
27-
>
2824
<a
2925
href={getRelativeLocaleUrl(currentLocale, "jobboard")}
3026
class="text-link">Job Board</a

src/components/Header.astro

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,11 +237,6 @@ const currentLocale = Astro.currentLocale || "ja";
237237
Timetable
238238
</a>
239239
</li>
240-
<li>
241-
<a href={getRelativeLocaleUrl(currentLocale, "sponsorship")}>
242-
Sponsorship
243-
</a>
244-
</li>
245240
<li>
246241
<a href={getRelativeLocaleUrl(currentLocale, "jobboard")}>
247242
Job Board

src/pages/en/sponsorship.astro

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,12 @@
11
---
2-
import Button from "../../components/Button.astro";
3-
import Chip from "../../components/Chip.astro";
4-
import { constants } from "../../constants";
52
import Layout from "../../layouts/Layout.astro";
63
import "../../styles/sub-page.css";
7-
import { formatDate } from "../../utils/dateFormat";
8-
9-
const currentLocale = Astro.currentLocale || "ja";
104
---
115

126
<Layout title="スポンサー" titleEn="Sponsorship">
137
<h2 class="section-title">Call for Sponsors</h2>
148
<div class="contents">
15-
<p>Go Conference is looking for sponsors.</p>
16-
<strong>
17-
* The call for Platinum, Gold, and Silver sponsors for Go Conference 2025
18-
has ended.
19-
</strong>
20-
<p>
21-
Bronze and Gopher sponsors are still being accepted.<br />
22-
We look forward to your application.
23-
</p>
24-
<div class="summary">
25-
<h3 class="sponsorship-title">
26-
<Chip variant="secondary">Application Period</Chip>
27-
</h3>
28-
<div class="sponsorship-date">
29-
<p class="inner">
30-
<span>{formatDate(constants.sponsorship.start, currentLocale)}</span>
31-
<span>~</span>
32-
<span>{formatDate(constants.sponsorship.end, currentLocale)}</span>
33-
</p>
34-
</div>
35-
</div>
36-
<p>
37-
<Button
38-
href="https://forms.gle/M2XAgH53HKiHJTGE9"
39-
target="_blank"
40-
size="large">Apply Here</Button
41-
>
42-
</p>
9+
<p>Sponsor recruitment for Go Conference 2025 has ended.</p>
10+
<p>Thank you very much for the many sponsor applications we received.</p>
4311
</div>
4412
</Layout>

src/pages/sponsorship.astro

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,14 @@
11
---
2-
import Button from "../components/Button.astro";
3-
import Chip from "../components/Chip.astro";
4-
import { constants } from "../constants";
52
import Layout from "../layouts/Layout.astro";
63
import "../styles/sub-page.css";
7-
import { formatDate } from "../utils/dateFormat";
84
---
95

106
<Layout title="スポンサー" titleEn="Sponsorship">
117
<h2 class="section-title">スポンサーの募集について</h2>
128
<div class="contents">
13-
<p>Go Conferenceではスポンサーを募集します。</p>
14-
<strong>
15-
※Go Conference 2025 の プラチナGoルド / Goルド / シルバー
16-
スポンサーの募集は終了しました。
17-
</strong>
9+
<p>Go Conference 2025のスポンサー募集は終了いたしました。</p>
1810
<p>
19-
ブロンズ / Gopher スポンサーは引き続き募集しています。<br />
20-
皆様のご応募をお待ちしております。
21-
</p>
22-
<div class="summary">
23-
<h3 class="sponsorship-title">
24-
<Chip variant="secondary">募集期間</Chip>
25-
</h3>
26-
<div class="sponsorship-date">
27-
<p class="inner">
28-
<span>{formatDate(constants.sponsorship.start)}</span>
29-
<span>~</span>
30-
<span>{formatDate(constants.sponsorship.end)}</span>
31-
</p>
32-
</div>
33-
</div>
34-
<p>
35-
<Button
36-
href="https://forms.gle/M2XAgH53HKiHJTGE9"
37-
target="_blank"
38-
size="large">申し込みはこちら</Button
39-
>
11+
たくさんのスポンサーの皆様にご応募いただき、誠にありがとうございました。
4012
</p>
4113
</div>
4214
</Layout>

0 commit comments

Comments
 (0)