Skip to content

Commit

Permalink
Updates files
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcgt committed Mar 21, 2024
1 parent c7d77e4 commit 60007c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';

import { Analytics } from "@vercel/analytics/react"
import NavBar from '../src/NewNavBar';
import imagePathWhite from '../src/assets/lvtcw.png'
import '../src/index.css'
import Home from '../src/index';
import Products from '../src/assets/routes/pages/tools';
Expand All @@ -22,8 +21,6 @@ const App = () => {
<Analytics />
<div className="header">
<NavBar links={links} />
<img src={imagePathWhite} height="25" width="30" className="logo" alt="Levetica" />
<h3>Levetica</h3>
<Routes>
<Route path="/" element={<Home/>} />
<Route path="/products" element={<Products />} />
Expand Down
3 changes: 3 additions & 0 deletions src/NewNavBar.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import { NavLink } from 'react-router-dom';
import imagePathWhite from '../src/assets/lvtcw.png'

const NavBar = ({ links }) => {
return (
<nav className="navbar">
<img src={imagePathWhite} height="25" width="30" className="logo" alt="Levetica" />
<h3>Levetica</h3>
<ul>
{links.map((link) => (
<li key={link.to}>
Expand Down

0 comments on commit 60007c2

Please sign in to comment.