RafaelJaime commited on
Commit
d47481c
·
verified ·
1 Parent(s): 9f860c2

Update src/App.js

Browse files
Files changed (1) hide show
  1. src/App.js +7 -1
src/App.js CHANGED
@@ -695,7 +695,7 @@ const UrologyLeaderboard = () => {
695
  style: { textDecoration: 'none', flexShrink: 0 }
696
  },
697
  React.createElement('img', {
698
- src: 'https://iesrafaelalberti.es/wp-content/uploads/2025/01/IA-Big-Data-cuadrado.png',
699
  alt: 'AI and Big Data Course Logo',
700
  style: {
701
  width: '80px',
@@ -704,6 +704,12 @@ const UrologyLeaderboard = () => {
704
  background: 'white',
705
  borderRadius: '8px',
706
  padding: '4px'
 
 
 
 
 
 
707
  }
708
  })
709
  )
 
695
  style: { textDecoration: 'none', flexShrink: 0 }
696
  },
697
  React.createElement('img', {
698
+ src: '/IA-Big-Data-cuadrado.png',
699
  alt: 'AI and Big Data Course Logo',
700
  style: {
701
  width: '80px',
 
704
  background: 'white',
705
  borderRadius: '8px',
706
  padding: '4px'
707
+ },
708
+ onError: (e) => {
709
+ console.log('Error loading course image from public folder');
710
+ },
711
+ onLoad: () => {
712
+ console.log('Course image loaded successfully from public folder');
713
  }
714
  })
715
  )