Skip to content

Commit

Permalink
fix: Route path
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinPadi committed Oct 1, 2023
1 parent 07034fc commit 8faa3bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ function App () {
return (
<div className='min-h-screen bg-fixed bg-cover'>
<Nav />
<Route path='/' exact component={HomePage} />
<Route path='/destination' exact component={DestinationPage} />
<Route path='/crew' exact component={CrewPage} />
<Route path='/technology' exact component={TechPage} />
<Route path='/space-tourism-website/' exact component={HomePage} />
<Route path='/space-tourism-website/destination' exact component={DestinationPage} />
<Route path='/space-tourism-website/crew' exact component={CrewPage} />
<Route path='/space-tourism-website/technology' exact component={TechPage} />
</div>

)
Expand Down

0 comments on commit 8faa3bb

Please sign in to comment.