More absolute image paths

This commit is contained in:
adilallo
2025-08-20 13:13:22 -06:00
parent f3b0daa2c0
commit eae99c7cdf
4 changed files with 14 additions and 14 deletions
+4 -4
View File
@@ -4,13 +4,13 @@ const SectionNumber = ({ number }) => {
const getImageSrc = (num) => {
switch (num) {
case 1:
return "/assets/SectionNumber_1.png";
return "assets/SectionNumber_1.png";
case 2:
return "/assets/SectionNumber_2.png";
return "assets/SectionNumber_2.png";
case 3:
return "/assets/SectionNumber_3.png";
return "assets/SectionNumber_3.png";
default:
return "/assets/SectionNumber_1.png";
return "assets/SectionNumber_1.png";
}
};