Skip to content

Commit

Permalink
updating path
Browse files Browse the repository at this point in the history
  • Loading branch information
kero1019 committed Jun 30, 2024
1 parent 2a31762 commit c943d7e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ function App() {
<BrowserRouter>
<header className="bg-main-background flex justify-between p-5 items-center h-[15%]">
<Link
to="/"
to="/Components/Home.jsx"
className=" font-extrabold text-[2rem]"
>
#VANLIFE
</Link>
<nav className="flex gap-5 text-gray-text font-semibold">
<Link to="/About.jsx">About</Link>
<Link to="/Vans.jsx">Vans</Link>
<Link to="/Components/About.jsx">About</Link>
<Link to="/Components/Vans.jsx">Vans</Link>
</nav>
</header>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/About.jsx" element={<About />} />
<Route path="/Vans.jsx" element={<Vans />} />
<Route path="/Components/Home.jsx" element={<Home />} />
<Route path="/Components/About.jsx" element={<About />} />
<Route path="/Components/Vans.jsx" element={<Vans />} />
</Routes>
</BrowserRouter>
</div>
Expand Down

0 comments on commit c943d7e

Please sign in to comment.