diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-07 13:19:53 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-07 13:19:53 +0100 |
| commit | 1257cd965f611ccac41398c5b64eb333dc2dc57a (patch) | |
| tree | 55d4f12e840649465c1bacb92416115f600beb2e /src/components | |
| parent | 639547a26790fdb68945113f4f6b2be445535b87 (diff) | |
Footer links
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Footer.tsx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 9ad24b8..a68d0d3 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -17,13 +17,9 @@ const Footer: React.FC<FooterProps> = ({ currentPage = 'home' }) => { <div className="footer-section"> <h3>Quick Links</h3> <ul> - {currentPage === 'chart' && ( - <li><Link to="/">Morse Hero Game</Link></li> - )} - {currentPage === 'home' && ( - <li><Link to="/chart">Morse Code Chart</Link></li> - )} - <li><a href="https://en.wikipedia.org/wiki/Morse_code" target="_blank" rel="noopener noreferrer">Learn More</a></li> + <li><Link to="/">Game</Link></li> + <li><Link to="/chart">Reference Chart</Link></li> + <li><Link to="https://www.mastercw.com">Learn Morse Code</Link></li> </ul> </div> <div className="footer-section"> |
