Skip to content

Commit 329590c

Browse files
authored
Merge pull request #64 from GoCon/close/sponsor-workshop
スポンサー/ワークショップ募集ページをcloseしました
2 parents ea7d42d + 7c2f22e commit 329590c

File tree

7 files changed

+8
-121
lines changed

7 files changed

+8
-121
lines changed

src/components/Footer.astro

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ const currentLocale = Astro.currentLocale || "ja";
1717
<a href={getRelativeLocaleUrl(currentLocale)} class="text-link"
1818
>Home</a
1919
>
20-
<a
21-
href={getRelativeLocaleUrl(currentLocale, "sponsorship")}
22-
class="text-link">Sponsorship</a
23-
>
24-
<a
25-
href={getRelativeLocaleUrl(currentLocale, "workshop")}
26-
class="text-link">Workshop</a
27-
>
2820
<a
2921
href="https://docs.google.com/document/d/1LxjzxHK23aTAFvGZeR-BpHf8sC6RKAqbImtnUtxQ3Yo/edit?tab=t.0#heading=h.n5j5dks9hlev"
3022
class="text-link external-link"

src/components/Header.astro

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,6 @@ const currentLocale = Astro.currentLocale || "ja";
241241
<div class="navigation">
242242
<ul class="navigation-menu">
243243
<li><a href={getRelativeLocaleUrl(currentLocale)}>Home</a></li>
244-
<li>
245-
<a href={getRelativeLocaleUrl(currentLocale, "sponsorship")}>
246-
Sponsorship
247-
</a>
248-
</li>
249244
</ul>
250245
<a
251246
href="https://docs.google.com/document/d/1LxjzxHK23aTAFvGZeR-BpHf8sC6RKAqbImtnUtxQ3Yo/edit?tab=t.0#heading=h.n5j5dks9hlev"
@@ -256,9 +251,6 @@ const currentLocale = Astro.currentLocale || "ja";
256251
<span>Sponsor FAQ</span>
257252
<OpenInNewIcon class="external-icon" />
258253
</a>
259-
<Button href={getRelativeLocaleUrl(currentLocale, "workshop")}>
260-
{currentLocale === "ja" ? "ワークショップに応募" : "Apply for Workshop"}
261-
</Button>
262254
<ul class="language-switcher">
263255
<li class="language-link">
264256
<a

src/pages/en/sponsorship.astro

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +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
const currentLocale = Astro.currentLocale || "ja";
106
---
117

128
<Layout title="スポンサー" titleEn="Sponsorship">
139
<h2 class="section-title">Call for Sponsors</h2>
1410
<div class="contents">
15-
<p>Go Conference is looking for sponsors.</p>
16-
<div class="summary">
17-
<h3 class="sponsorship-title">
18-
<Chip variant="secondary">Application Period</Chip>
19-
</h3>
20-
<div class="sponsorship-date">
21-
<p class="inner">
22-
<span>{formatDate(constants.sponsorship.start, currentLocale)}</span>
23-
<span>~</span>
24-
<span>{formatDate(constants.sponsorship.end, currentLocale)}</span>
25-
</p>
26-
</div>
27-
</div>
28-
<p>
29-
<Button
30-
href="https://forms.gle/M2XAgH53HKiHJTGE9"
31-
target="_blank"
32-
size="large">Apply Here</Button
33-
>
34-
</p>
11+
<p>The call for sponsors has ended.</p>
12+
<p>Thank you for all the submissions we received.</p>
3513
</div>
3614
</Layout>

src/pages/en/workshop.astro

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +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
const currentLocale = Astro.currentLocale || "ja";
106
---
117

128
<Layout title="ワークショップ" titleEn="Workshop">
139
<h2 class="section-title">Call for Workshops</h2>
1410
<div class="contents">
15-
<p>Go Conference is looking for workshops.</p>
16-
<div class="summary">
17-
<h3 class="sponsorship-title">
18-
<Chip variant="secondary">Application Period</Chip>
19-
</h3>
20-
<div class="sponsorship-date">
21-
<p class="inner">
22-
<span>{formatDate(constants.workshop.start, currentLocale)}</span>
23-
<span>~</span>
24-
<span>{formatDate(constants.workshop.end, currentLocale)}</span>
25-
</p>
26-
</div>
27-
</div>
28-
<p>
29-
<Button
30-
href="https://forms.gle/3Edurmgxbbdmmxm89"
31-
target="_blank"
32-
size="large"
33-
>
34-
Apply here
35-
</Button>
36-
</p>
11+
<p>The call for workshops has ended.</p>
12+
<p>Thank you for all the submissions we received.</p>
3713
</div>
3814
</Layout>

src/pages/index.astro

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,4 @@ const currentLocale = Astro.currentLocale || "ja";
3939
</tbody>
4040
</table>
4141
</section>
42-
<section class="section sponsorship">
43-
<h2 class="section-title">スポンサー募集中</h2>
44-
<p>Go Conferenceへのスポンサー応募は以下リンクからできます</p>
45-
<p class="cta-button">
46-
<Button
47-
href={getRelativeLocaleUrl(currentLocale, "sponsorship")}
48-
size="large"
49-
variant="secondary"
50-
>
51-
スポンサー募集フォーム
52-
</Button>
53-
</p>
54-
</section>
5542
</FluidLayout>

src/pages/sponsorship.astro

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,7 @@ import { formatDate } from "../utils/dateFormat";
1010
<Layout title="スポンサー" titleEn="Sponsorship">
1111
<h2 class="section-title">スポンサーの募集について</h2>
1212
<div class="contents">
13-
<p>Go Conferenceではスポンサーを募集します。</p>
14-
<div class="summary">
15-
<h3 class="sponsorship-title">
16-
<Chip variant="secondary">募集期間</Chip>
17-
</h3>
18-
<div class="sponsorship-date">
19-
<p class="inner">
20-
<span>{formatDate(constants.sponsorship.start)}</span>
21-
<span>~</span>
22-
<span>{formatDate(constants.sponsorship.end)}</span>
23-
</p>
24-
</div>
25-
</div>
26-
<p>
27-
<Button
28-
href="https://forms.gle/M2XAgH53HKiHJTGE9"
29-
target="_blank"
30-
size="large">申し込みはこちら</Button
31-
>
32-
</p>
13+
<p>スポンサーの募集は終了いたしました。</p>
14+
<p>たくさんのご応募をいただき、ありがとうございました。</p>
3315
</div>
3416
</Layout>

src/pages/workshop.astro

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,7 @@ import { formatDate } from "../utils/dateFormat";
1010
<Layout title="ワークショップ" titleEn="Workshop">
1111
<h2 class="section-title">ワークショップの募集について</h2>
1212
<div class="contents">
13-
<p>Go Conferenceではワークショップを募集します。</p>
14-
<div class="summary">
15-
<h3 class="sponsorship-title">
16-
<Chip variant="secondary">募集期間</Chip>
17-
</h3>
18-
<div class="sponsorship-date">
19-
<p class="inner">
20-
<span>{formatDate(constants.workshop.start)}</span>
21-
<span>~</span>
22-
<span>{formatDate(constants.workshop.end)}</span>
23-
</p>
24-
</div>
25-
</div>
26-
<p>
27-
<Button
28-
href="https://forms.gle/3Edurmgxbbdmmxm89"
29-
target="_blank"
30-
size="large"
31-
>
32-
申し込みはこちら
33-
</Button>
34-
</p>
13+
<p>ワークショップの募集は終了いたしました。</p>
14+
<p>たくさんのご応募をいただき、ありがとうございました。</p>
3515
</div>
3616
</Layout>

0 commit comments

Comments
 (0)