Skip to content

Commit ccf9ab9

Browse files
committed
feat(個人スポンサー): 個人スポンサーの募集バナーを追加
1 parent 0bc9c08 commit ccf9ab9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

2025/src/components/Sponsors/Individuals.astro

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
2+
import Card from "../Card.astro";
23
import Individual from "./Individual.astro";
34
import rawCsv from "../../data/individual_sponsors.csv";
45
import { CsvSchema } from "../../types/schema";
6+
import { ExternalLink, Heart } from "@lucide/astro";
57
68
const csv = CsvSchema.parse(rawCsv);
79
---
@@ -23,4 +25,25 @@ const csv = CsvSchema.parse(rawCsv);
2325
))
2426
}
2527
</div>
28+
<Card class="flex flex-col rounded-lg border border-pink-200 bg-pink-50 p-6">
29+
<Heart class="mx-auto mb-4 h-12 w-12 text-pink-500" />
30+
<p class="mx-auto font-bold">個人スポンサーになりませんか?</p>
31+
<p class="mx-auto mb-4 text-gray-700">
32+
VimConf 2025 Smallの成功を一緒に作り上げましょう!
33+
</p>
34+
<span class="mx-auto">
35+
<a
36+
href="https://peatix.com/event/4468783/view"
37+
target="_blank"
38+
rel="noopener"
39+
>
40+
<button
41+
class="inline-flex h-10 items-center justify-center gap-2 rounded-md bg-pink-500 bg-gradient-to-r px-4 py-2 text-sm font-medium whitespace-nowrap text-primary-foreground ring-offset-background transition-colors hover:bg-pink-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"
42+
>
43+
個人スポンサーになる
44+
<ExternalLink class="ml-2 h-4 w-4" />
45+
</button>
46+
</a>
47+
</span>
48+
</Card>
2649
</div>

0 commit comments

Comments
 (0)