Skip to content

Commit e4240d8

Browse files
authored
Merge pull request #16 from OpenDevicePartnership/jeffglaum/fix-missing-images
Change filename case on svg images
2 parents cd3b033 + 0805f94 commit e4240d8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/landing_page.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ pub fn LandingPage() -> impl IntoView {
201201
"
202202
>
203203
<div class="flex flex-row gap-[60px] justify-start">
204-
<ImageButton href="/boot-firmware" img_src="/images/patina.svg" alt="Boot Firmware" />
205-
<ImageButton href="/embedded-controller" img_src="/images/ec.svg" alt="Embedded Controller" />
204+
<ImageButton href="/boot-firmware" img_src="/images/Patina.svg" alt="Boot Firmware" />
205+
<ImageButton href="/embedded-controller" img_src="/images/EC.svg" alt="Embedded Controller" />
206206
<ImageButton href="/windows-ec-services" img_src="/images/ECServices.svg" alt="EC Services" />
207207
</div>
208208
</section>

src/components/projects_component.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub fn ProjectsComponent() -> impl IntoView {
9090
<div class="flex flex-row gap-[60px] items-center">
9191
{/* Image Button */}
9292
<div>
93-
<ImageButton href="/boot-firmware" img_src="/images/patina.svg" alt="Boot Firmware" width=600 height=518 />
93+
<ImageButton href="/boot-firmware" img_src="/images/Patina.svg" alt="Boot Firmware" width=600 height=518 />
9494
</div>
9595
{/* Text Content */}
9696
<div class="flex flex-col items-start" style="flex: 1;">
@@ -144,7 +144,7 @@ pub fn ProjectsComponent() -> impl IntoView {
144144
{/* Row 2 */}
145145
<div class="flex flex-row gap-[60px] items-center">
146146
<div>
147-
<ImageButton href="/embedded-controller" img_src="/images/ec.svg" alt="Embedded Controller" width=600 height=518 />
147+
<ImageButton href="/embedded-controller" img_src="/images/EC.svg" alt="Embedded Controller" width=600 height=518 />
148148
</div>
149149
<div class="flex flex-col items-start" style="flex: 1;">
150150
<span

0 commit comments

Comments
 (0)