File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1
1
---
2
+ import Card from " ../Card.astro" ;
2
3
import Individual from " ./Individual.astro" ;
3
4
import rawCsv from " ../../data/individual_sponsors.csv" ;
4
5
import { CsvSchema } from " ../../types/schema" ;
6
+ import { ExternalLink , Heart } from " @lucide/astro" ;
5
7
6
8
const csv = CsvSchema .parse (rawCsv );
7
9
---
@@ -23,4 +25,25 @@ const csv = CsvSchema.parse(rawCsv);
23
25
))
24
26
}
25
27
</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 >
26
49
</div >
You can’t perform that action at this time.
0 commit comments