Skip to content

Commit 895327c

Browse files
committed
fix: some sponsors without background
1 parent a69cc87 commit 895327c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/sponsors.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ pub fn Sponsors() -> impl IntoView {
8383
description="Evento de tecnología, cinco días con más de 150 charlas y talleres de tecnología, divulgación científica y una gran variedad de temas."
8484
/>
8585
<SponsorCard
86+
image_bg_color="none"
8687
name="Testing Bolivia"
8788
link="https://testingbolivia.com"
88-
image=format!("{assets_folder}/sponsors/testingbolivia.svg")
89+
image=format!("{assets_folder}/sponsors/testingbolivia.png")
8990
description="Evento de tecnología, Hablemos de QA y Testing, su importancia dentro de las empresas y mucho mas."
9091
/>
9192
</div>
@@ -109,6 +110,7 @@ pub fn SponsorCard(
109110
let colors = HashMap::from([
110111
("white", "bg-white dark:bg-white text-black dark:text-black"),
111112
("black", "bg-black text-white dark:text-black"),
113+
("none", "text-white dark:text-black"),
112114
]);
113115
let current_color = (*colors.get(&image_bg_color).unwrap()).to_string();
114116

0 commit comments

Comments
 (0)