Skip to content

Commit 9bb4192

Browse files
committed
feat: LTの募集を開始
1 parent d4aef83 commit 9bb4192

File tree

1 file changed

+27
-7
lines changed

1 file changed

+27
-7
lines changed

2025/src/components/Top.astro

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import VimLogo from "./VimLogo.astro";
3-
import { ExternalLink, Heart } from "@lucide/astro";
3+
import { ExternalLink, Heart, Zap } from "@lucide/astro";
44
---
55

66
<section
@@ -35,12 +35,19 @@ import { ExternalLink, Heart } from "@lucide/astro";
3535
</p>
3636
</div>
3737
</div>
38-
<div
39-
class="mb-6 inline-flex items-center rounded-full bg-gradient-to-r from-emerald-500 to-green-500 px-6 py-3 text-white"
40-
>
41-
<span class="text-sm font-bold md:text-base"
42-
>🎉 チケット販売開始! 🎉</span
38+
<div class="mb-6 flex flex-col items-center gap-3">
39+
<div
40+
class="inline-flex items-center rounded-full bg-gradient-to-r from-purple-500 to-violet-500 px-6 py-3 text-white"
41+
>
42+
<span class="text-sm font-bold md:text-base">⚡ LT募集開始! ⚡</span>
43+
</div>
44+
<div
45+
class="inline-flex items-center rounded-full bg-gradient-to-r from-emerald-500 to-green-500 px-6 py-3 text-white"
4346
>
47+
<span class="text-sm font-bold md:text-base"
48+
>🎉 チケット販売開始! 🎉</span
49+
>
50+
</div>
4451
</div>
4552
<div
4653
class="mb-8 flex flex-col items-center justify-center gap-3 sm:flex-row"
@@ -61,7 +68,7 @@ import { ExternalLink, Heart } from "@lucide/astro";
6168
><a href="#schedule">スケジュールを見る</a></button
6269
>
6370
</div>
64-
<div class="flex justify-center">
71+
<div class="flex flex-col justify-center gap-2">
6572
<a
6673
href="https://peatix.com/event/4468783/view"
6774
target="_blank"
@@ -75,6 +82,19 @@ import { ExternalLink, Heart } from "@lucide/astro";
7582
<ExternalLink class="ml-2 h-4 w-4" />
7683
</button>
7784
</a>
85+
<a
86+
href="https://docs.google.com/forms/d/e/1FAIpQLSe_j3WMp1ZcIWNHpzYYbX01cLWOjDnoaeMotT5sn-5g4ji7Gg/viewform"
87+
target="_blank"
88+
rel="noopener"
89+
>
90+
<button
91+
class="inline-flex h-10 items-center justify-center gap-2 rounded-md bg-purple-500 px-4 py-2 text-sm font-medium whitespace-nowrap text-primary-foreground ring-offset-background transition-colors hover:bg-purple-600 focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0"
92+
>
93+
<Zap class="mr-2 h-5 w-5" />
94+
LTを応募する
95+
<ExternalLink class="ml-2 h-4 w-4" />
96+
</button>
97+
</a>
7898
</div>
7999
</div>
80100
</section>

0 commit comments

Comments
 (0)