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 765db69 commit 2ea5385
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
import NavBarNew from './assets/components/Navbar_new.tsx'
import Navbar from './assets/components/Navbar.tsx'
import imagePath from './assets/levetica.svg'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap/dist/js/bootstrap.bundle.min.js'
import Text from './index.tsx'

function App() {
let items = ["Accueil","Outils","Articles","À propos"];
return (
<>
<NavBarNew />
<Navbar
brandName='Levetica'
imageSrcPath={imagePath}
navItems={items}
/>
<Text />
</>
)
Expand Down

0 comments on commit 2ea5385

Please sign in to comment.