Skip to content

Commit f104c94

Browse files
committedOct 6, 2024
Fix routing issues in App.js
1 parent 0a2a019 commit f104c94

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/App.js

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ function App() {
1818
<Navbar/>
1919
<Routes>
2020
<Route path='/' element={<Shop/>}/>
21+
<Route path='/Ajax-Clothings' element={<Shop/>}/>
2122
<Route path='/mens' element={<ShopCategory banner={men_banner} category="men"/>}/>
2223
<Route path='/womens' element={<ShopCategory banner={women_banner} category="women"/>}/>
2324
<Route path='/kids' element={<ShopCategory banner={kids_banner} category="kid"/>}/>

‎src/componenets/Footer/Footer.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const Footer = () => {
1010
<div className='footer'>
1111
<div className="footer-logo">
1212
<img src={footer_logo} alt="" />
13-
<p>SHOPPER</p>
13+
<p>Ajax Clothings</p>
1414
<ul className="footer-links">
1515
<li>Company</li>
1616
<li>Products</li>

0 commit comments

Comments
 (0)
Please sign in to comment.