Skip to content

Commit

Permalink
Re-added delete closing header tag
Browse files Browse the repository at this point in the history
  • Loading branch information
MiliMade committed Mar 29, 2024
1 parent 7f2a581 commit 0c994bf
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/views/Layout.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import { Outlet, NavLink } from 'react-router-dom';

import './Layout.css';
Expand All @@ -23,12 +22,12 @@ export function Layout() {
<header className="Layout-header">
<h1>SwiftShop</h1>

<NavBar />

<main className="Layout-main">
<Outlet />
</main>
<NavBar />

<main className="Layout-main">
<Outlet />
</main>
</header>
</div>
</>
);
Expand Down

0 comments on commit 0c994bf

Please sign in to comment.