Skip to content

Commit

Permalink
fix: update routes and logo path
Browse files Browse the repository at this point in the history
  • Loading branch information
kyziq committed Jan 7, 2024
1 parent 4eb9b87 commit 2fbc2a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function App() {
<Navbar />

<Routes>
<Route exact path="/" element={<Home />} />
<Route exact path="/artistry-hub/" element={<Home />} />
<Route exact path="/test" element={<Test />} />
{/* <Route component={GenericNotFound} /> */}
</Routes>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ const UserProfileDropdown = () => (
const NavbarComponent = () => {
return (
<Navbar maxWidth={'full'} isBordered shouldHideOnScroll>
<Link to="/" reloadDocument>
<Image src="/logo.png" alt="Logo" width={40} height={40} isZoomed />
<Link to="/artistry-hub/" reloadDocument>
<Image src="./logo.png" alt="Logo" width={40} height={40} isZoomed />
</Link>
<NavbarContent justify="start">
<NavbarBrand>
Expand Down

0 comments on commit 2fbc2a8

Please sign in to comment.