Apply reloadDocument to Link components to fix broken ScrollSpy
This commit is contained in:
parent
be44f165f2
commit
07a302a9cc
@ -8,12 +8,12 @@ const Home = () => {
|
||||
<section className="content-section">
|
||||
<h1>Hallo, my name is Kevin.</h1>
|
||||
<h3>Nice to meet you! :)</h3>
|
||||
<p>I have done <Link to="/pages/software">configuration automation</Link>, <Link to="/pages/software/dxp-development">DXP development</Link> and ...</p>
|
||||
<p>When it comes to technology and engineering, I am always curious and eager to learn and adept myself. One of the things I enjoy the most is being able to teach others. Interns who enthousiastically become better programmers themselves through my knowledge is amazing! Check out my <Link to="/pages/software">Software</Link> journey.</p>
|
||||
<p>I have done <Link reloadDocument to="/pages/software/configuration-automation">configuration automation</Link>, <Link reloadDocument to="/pages/software/dxp-development">DXP development</Link> and ...</p>
|
||||
<p>When it comes to technology and engineering, I am always curious and eager to learn and adept myself. One of the things I enjoy the most is being able to teach others. Interns who enthousiastically become better programmers themselves through my knowledge is amazing! Check out my <Link reloadDocument to="/pages/software">Software</Link> journey.</p>
|
||||
<p>My other interests are:</p>
|
||||
<ul>
|
||||
<li><Link to="/pages/radio">amateur radio</Link></li>
|
||||
<li><Link to="/pages/linux">Linux</Link></li>
|
||||
<li><Link reloadDocument to="/pages/radio">amateur radio</Link></li>
|
||||
<li><Link reloadDocument to="/pages/linux">Linux</Link></li>
|
||||
<li>electronics</li>
|
||||
<li>learning Japanese</li>
|
||||
<li>woodworking</li>
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
import React from 'react';
|
||||
|
||||
import {BrowserRouter as Router, Routes, Route, Link} from 'react-router-dom';
|
||||
|
||||
const DXPDevelopment = () => {
|
||||
return (
|
||||
<div className='row'>
|
||||
|
||||
@ -106,7 +106,7 @@ const Software = () => {
|
||||
<hr/>
|
||||
<p>Projects I have worked on:</p>
|
||||
<ul>
|
||||
<li><Link to="/pages/software/dxp-development">DXP development- OPPLE catalog generator</Link></li>
|
||||
<li><Link reloadDocument to="/pages/software/dxp-development">DXP development- OPPLE catalog generator</Link></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@ -29,11 +29,11 @@ const Navigation = (props) => {
|
||||
Portal
|
||||
</a>
|
||||
<ul className="dropdown-menu">
|
||||
<li><Link to="/pages/software" className="dropdown-item">Software</Link></li>
|
||||
<li><Link reloadDocument to="/pages/software" className="dropdown-item">Software</Link></li>
|
||||
<li><hr className="dropdown-divider"/></li>
|
||||
<li><Link to="/pages/radio" className="dropdown-item">Radio Amateur</Link></li>
|
||||
<li><Link reloadDocument to="/pages/radio" className="dropdown-item">Radio Amateur</Link></li>
|
||||
<li><hr className="dropdown-divider"/></li>
|
||||
<li><Link to="/pages/linux" className="dropdown-item">Linux</Link></li>
|
||||
<li><Link reloadDocument to="/pages/linux" className="dropdown-item">Linux</Link></li>
|
||||
</ul>
|
||||
</li>
|
||||
{/* <li className="nav-item">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user