-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhacktoberfest.rs
61 lines (59 loc) · 2.64 KB
/
hacktoberfest.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use leptos::{component, view, IntoView};
use crate::components::{
button_link::ButtonLink,
button_large_link::ButtonLargeLink,
icons::{DiscordIcon, CalendarIcon, GithubIcon},
};
#[component]
pub fn Hacktoberfest() -> impl IntoView {
view! {
<section class="bg-orange-200/30 dark:bg-transparent">
<div class="container mx-auto px-4">
<div class="flex flex-col items-center py-20 gap-y-6">
<h2 class="text-4xl text-center mb-4">
<span class="font-work-sans font-light">
"🚀 ¡Únete a la celebración del"
<span class="font-alfa-slab text-orange-500">" Hacktoberfest "</span>
"con nosotros! 🚀"
</span>
</h2>
<p class="text-center text-xl">
"Este" <span class="text-orange-500 font-alfa-slab">" 5 de Octubre"</span>"
, nuestra comunidad se une a este emocionante evento de programación.
Aprovecha esta excelente oportunidad para contribuir a proyectos open-source, aprender nuevas habilidades
y conectar con otros amantes del open-source."
</p>
<div class="flex items-center gap-x-12 gap-y-6 flex-col *:w-full sm:flex-row">
<ButtonLink
href="https://discord.gg/4ng5HgmaMg"
shadow="box"
color="white"
size="big"
>
<DiscordIcon size=30/>
"Participa"
</ButtonLink>
<ButtonLargeLink
href="https://calendar.app.google/SQZKr1D1eni9MgJL7"
shadow="box"
color="white"
size="big"
>
<CalendarIcon size=30/>
"Añade a tu calendario"
</ButtonLargeLink>
<ButtonLargeLink
href="https://forms.rustlang-es.org/form/1"
shadow="box"
color="white"
size="big"
>
<GithubIcon size=30/>
"Postula tu proyecto"
</ButtonLargeLink>
</div>
</div>
</div>
</section>
}
}