Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcgt committed Mar 20, 2024
1 parent e90bac6 commit c3ec8e3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,19 @@ import Tools from '../src/assets/routes/pages/tools.tsx'
import News from '../src/assets/routes/pages/news.tsx'
import About from '../src/assets/routes/pages/about.tsx'
import Text from './index.tsx'
import Navbar from './assets/components/Navbar.tsx'
import imagePath from './assets/levetica.svg'
import { Routes, Route } from 'react-router-dom'

function App() {
let items = ["Accueil","Produits","Articles","À propos"];
return (
<>
<Navbar
brandName='Levetica'
imageSrcPath={imagePath}
navItems={items}
/>
<div className='App'>
<Routes>
<Route path='/' element={<Home />} />
Expand Down

0 comments on commit c3ec8e3

Please sign in to comment.